Use java 1.6 compatible method of closing the zip file. Stops stupid compile error.

This commit is contained in:
Christian 2013-09-02 00:12:36 -04:00
parent 4f9b778d14
commit b9ac2ac13c

View file

@ -236,7 +236,7 @@ public class FMLServerHandler implements IFMLSidedHandler
StringTranslate.inject(zf.getInputStream(ze));
}
}
IOUtils.closeQuietly(zf);
zf.close();
}
private void searchDirForENUSLanguage(File source, String path) throws IOException
{