Small fix.

This commit is contained in:
zaxar163 2019-01-06 21:46:51 +04:00
parent 05a3b2ba1f
commit a76a566a37
No known key found for this signature in database
GPG key ID: CEE900027AE098E0
2 changed files with 23 additions and 24 deletions

View file

@ -100,6 +100,7 @@ public ArrayList<String> getSuperClasses(String type) {
@Override
public void close() throws IOException {
cp.stream().forEach(IOHelper::close);
cp.clear();
}
}

View file

@ -17,13 +17,10 @@
import ru.gravit.utils.helper.IOHelper;
public class StripLineNumbersTask implements LauncherBuildTask {
private final LaunchServer server;
private final ClassMetadataReader reader;
public StripLineNumbersTask(LaunchServer server) {
this.server = server;
reader = new ClassMetadataReader();
}
@Override
@ -34,6 +31,7 @@ public String getName() {
@Override
public Path process(Path inputFile) throws IOException {
Path out = server.dir.resolve(server.config.projectName + "-stripped.jar");
try (ClassMetadataReader reader = new ClassMetadataReader()) {
reader.getCp().add(new JarFile(inputFile.toFile()));
try (ZipInputStream input = IOHelper.newZipInput(inputFile);
ZipOutputStream output = new ZipOutputStream(IOHelper.newOutput(out))) {
@ -53,7 +51,7 @@ public Path process(Path inputFile) throws IOException {
e = input.getNextEntry();
}
}
reader.close();
}
return out;
}