-
Type:
New Feature
-
Resolution: Fixed
-
Priority:
Minor
-
None
To prevent memory leaks the zip Resource should be closed.
in public static void unzip(File zipFile, File targetFolder, Predicate<String> filter) throws IOException
ZipFile zip = new ZipFile(zipFile);
Should be closed at the end of the method