diff options
author | Keiron Liddle <keiron@apache.org> | 2001-11-14 13:45:45 +0000 |
---|---|---|
committer | Keiron Liddle <keiron@apache.org> | 2001-11-14 13:45:45 +0000 |
commit | 777dbd0139d29b074adc4ddd05e64b66b0cd5d48 (patch) | |
tree | 944733f61e2f83042f87bc82ca78e2975f5e5240 /src/org/apache/fop/fo/PropertyList.java | |
parent | 364a97a6e14a63a4df36b64d492a26ea59cfa173 (diff) | |
download | xmlgraphics-fop-777dbd0139d29b074adc4ddd05e64b66b0cd5d48.tar.gz xmlgraphics-fop-777dbd0139d29b074adc4ddd05e64b66b0cd5d48.zip |
changed a few more vector and hastable
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@194566 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/org/apache/fop/fo/PropertyList.java')
-rw-r--r-- | src/org/apache/fop/fo/PropertyList.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/org/apache/fop/fo/PropertyList.java b/src/org/apache/fop/fo/PropertyList.java index f6cd8747f..cb8d89d81 100644 --- a/src/org/apache/fop/fo/PropertyList.java +++ b/src/org/apache/fop/fo/PropertyList.java @@ -7,12 +7,12 @@ package org.apache.fop.fo; -import java.util.Hashtable; +import java.util.HashMap; import org.apache.fop.messaging.MessageHandler; import org.apache.fop.fo.properties.WritingMode; import org.apache.fop.apps.FOPException; -public class PropertyList extends Hashtable { +public class PropertyList extends HashMap { private byte[] wmtable = null; // writing-mode values public static final int LEFT = 0; @@ -38,7 +38,7 @@ public class PropertyList extends Hashtable { "inline-progression-dimension" }; - static private final Hashtable wmtables = new Hashtable(4); + static private final HashMap wmtables = new HashMap(4); { wmtables.put(new Integer(WritingMode.LR_TB), /* lr-tb */ new byte[] { |