From: Steve Coffman Date: Fri, 18 Aug 2000 14:21:59 +0000 (+0000) Subject: Karen Lease's bug fix. Good catch. X-Git-Tag: pre-columns~209 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=63656255d10f6928062c6919f2b6698e66c17297;p=xmlgraphics-fop.git Karen Lease's bug fix. Good catch. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@193671 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/org/apache/fop/fo/PropertyListBuilder.java b/src/org/apache/fop/fo/PropertyListBuilder.java index e74d94929..820b74b8a 100644 --- a/src/org/apache/fop/fo/PropertyListBuilder.java +++ b/src/org/apache/fop/fo/PropertyListBuilder.java @@ -159,7 +159,7 @@ public class PropertyListBuilder { { Hashtable propertyTable; Property.Maker propertyMaker = null; - propertyTable = (Hashtable)elementTable.get(propertyName); + propertyTable = (Hashtable)elementTable.get(elementName); if(propertyTable != null) { propertyMaker = (Property.Maker)propertyTable.get(propertyName); }