STFU I know how to code. *shouts* get off my lawn!

This commit is contained in:
cpw 2016-01-04 16:18:44 -05:00
parent 035dd4c245
commit 632d8e553d
1 changed files with 1 additions and 1 deletions

View File

@ -447,8 +447,8 @@ public class CoreModManager {
FMLRelaunchLog.log(Level.DEBUG, "Extracted ContainedDep %s from %s to %s", dep, jar.getName(), target.getCanonicalPath());
try
{
FileOutputStream targ = new FileOutputStream(target);
Files.createParentDirs(target);
FileOutputStream targ = new FileOutputStream(target);
ByteStreams.copy(jar.getInputStream(jarEntry), targ);
targ.close();
} catch (IOException e)