Use java 1.6 compatible method of closing the zip file. Stops stupid compile error.
This commit is contained in:
parent
4f9b778d14
commit
b9ac2ac13c
1 changed files with 1 additions and 1 deletions
|
@ -236,7 +236,7 @@ public class FMLServerHandler implements IFMLSidedHandler
|
||||||
StringTranslate.inject(zf.getInputStream(ze));
|
StringTranslate.inject(zf.getInputStream(ze));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
IOUtils.closeQuietly(zf);
|
zf.close();
|
||||||
}
|
}
|
||||||
private void searchDirForENUSLanguage(File source, String path) throws IOException
|
private void searchDirForENUSLanguage(File source, String path) throws IOException
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue