aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorSteve Coffman <gears@apache.org>2000-10-12 22:11:33 +0000
committerSteve Coffman <gears@apache.org>2000-10-12 22:11:33 +0000
commit8e50d92e22db64b098f7b601b6980719d8df1862 (patch)
treed4ececbeb28a72f991815a65275141ee3df06356 /lib
parentdf98ff4aef27d94815ad7ebd61318f296ca9036d (diff)
downloadxmlgraphics-fop-8e50d92e22db64b098f7b601b6980719d8df1862.tar.gz
xmlgraphics-fop-8e50d92e22db64b098f7b601b6980719d8df1862.zip
Christian Geisert's patch to allow JDK 1.1 people to use no images.
Doesn't hurt on 1.2, but haven't tested on 1.1 system. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@193724 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'lib')
-rw-r--r--lib/Compare.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Compare.java b/lib/Compare.java
index eb787d775..762063b55 100644
--- a/lib/Compare.java
+++ b/lib/Compare.java
@@ -92,7 +92,7 @@ public class Compare {
StringTokenizer tokens = new StringTokenizer(filenames,",");
Vector filenameListTmp = new Vector(20);
while (tokens.hasMoreTokens()) {
- filenameListTmp.add(tokens.nextToken());
+ filenameListTmp.addElement(tokens.nextToken());
}
filenameList = new String [filenameListTmp.size()] ;
filenameListTmp.copyInto((String[]) filenameList);