diff options
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[] { |