aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKelly Campbell <kellyc@apache.org>2001-03-08 17:37:14 +0000
committerKelly Campbell <kellyc@apache.org>2001-03-08 17:37:14 +0000
commite4b1f19c88cba6f0bf31f3731abed0ac9ef3630e (patch)
tree34feb2ad560497ff0c4d0e87dd8aa6a7ab6bf6f1
parenta8eef21f26a1dd12b8576b6e8488bf66ff81d479 (diff)
downloadxmlgraphics-fop-e4b1f19c88cba6f0bf31f3731abed0ac9ef3630e.tar.gz
xmlgraphics-fop-e4b1f19c88cba6f0bf31f3731abed0ac9ef3630e.zip
JDK 1.1 fix to Manifest task
PR: Obtained from: Submitted by: Reviewed by: git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@194145 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--lib/buildtools.jarbin39687 -> 39667 bytes
-rw-r--r--src/org/apache/fop/tools/anttasks/Manifest.java2
2 files changed, 1 insertions, 1 deletions
diff --git a/lib/buildtools.jar b/lib/buildtools.jar
index ac38eb58d..ef6f778cf 100644
--- a/lib/buildtools.jar
+++ b/lib/buildtools.jar
Binary files differ
diff --git a/src/org/apache/fop/tools/anttasks/Manifest.java b/src/org/apache/fop/tools/anttasks/Manifest.java
index 3e285a7be..f0e7c68a0 100644
--- a/src/org/apache/fop/tools/anttasks/Manifest.java
+++ b/src/org/apache/fop/tools/anttasks/Manifest.java
@@ -149,7 +149,7 @@ public class Manifest extends Task
}
System.out.println("creating "+f);
- f.createNewFile();
+ //jdk1.2 -- f.createNewFile();
out = new PrintWriter(new FileOutputStream(f));
}