mirror of
https://github.com/GravitLauncher/Launcher
synced 2025-04-03 23:11:57 +03:00
Closing fix.
This commit is contained in:
parent
8735a74fed
commit
bc0d2f48cb
4 changed files with 10 additions and 2 deletions
|
@ -1,5 +1,6 @@
|
|||
package ru.gravit.launchserver.asm;
|
||||
|
||||
import java.io.Closeable;
|
||||
import java.io.IOException;
|
||||
import java.io.InputStream;
|
||||
import java.util.ArrayList;
|
||||
|
@ -17,7 +18,7 @@
|
|||
* Позволяет искать методы внутри незагруженных классов и общие суперклассы для
|
||||
* чего угодно. Работает через поиск class-файлов в classpath.
|
||||
*/
|
||||
public class ClassMetadataReader {
|
||||
public class ClassMetadataReader implements Closeable {
|
||||
private class CheckSuperClassVisitor extends ClassVisitor {
|
||||
|
||||
String superClassName;
|
||||
|
@ -96,4 +97,9 @@ public ArrayList<String> getSuperClasses(String type) {
|
|||
return superclasses;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void close() throws IOException {
|
||||
cp.stream().forEach(IOHelper::close);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -195,6 +195,7 @@ public Path process(Path cleanJar) throws IOException {
|
|||
} catch (CannotCompileException | NotFoundException e) {
|
||||
LogHelper.error(e);
|
||||
}
|
||||
reader.close();
|
||||
return binaryFile;
|
||||
}
|
||||
|
||||
|
|
|
@ -53,6 +53,7 @@ public Path process(Path inputFile) throws IOException {
|
|||
e = input.getNextEntry();
|
||||
}
|
||||
}
|
||||
reader.close();
|
||||
return out;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue