try with resources cuz haters

This commit is contained in:
extendedclip 2018-07-22 16:52:36 -04:00
parent 49eceaae50
commit dd5ec37055
1 changed files with 1 additions and 5 deletions

View File

@ -67,9 +67,7 @@ public class FileUtil {
if (list == null) {
list = new ArrayList<>();
}
try {
URLClassLoader cl = new URLClassLoader(new URL[]{jar}, clazz.getClassLoader());
JarInputStream jis = new JarInputStream(jar.openStream());
try (URLClassLoader cl = new URLClassLoader(new URL[]{jar}, clazz.getClassLoader()); JarInputStream jis = new JarInputStream(jar.openStream())) {
while (true) {
JarEntry j = jis.getNextJarEntry();
if (j == null) {
@ -88,8 +86,6 @@ public class FileUtil {
}
}
}
cl.close();
jis.close();
} catch (Throwable t) {
}
return list;