From a5499d8cb80b65794bf5ccc00e4bb2a37b1e0ff9 Mon Sep 17 00:00:00 2001 From: Ray Greenwell Date: Sat, 2 Oct 2010 03:36:19 +0000 Subject: [PATCH] Patch from Andrzej: Getdown is currently failing to create patch files because JarDiff is closing the outputstream. The attached patch comments it out, which seems to work. --- src/main/java/com/threerings/getdown/tools/JarDiff.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/threerings/getdown/tools/JarDiff.java b/src/main/java/com/threerings/getdown/tools/JarDiff.java index d975284..3e7730b 100644 --- a/src/main/java/com/threerings/getdown/tools/JarDiff.java +++ b/src/main/java/com/threerings/getdown/tools/JarDiff.java @@ -190,7 +190,7 @@ public class JarDiff implements JarDiffCodes } jos.finish(); - jos.close(); +// jos.close(); } catch (IOException ioE){ throw ioE;