From cf752debe3858eaed3c87e7be16f0e34ba38eb2f Mon Sep 17 00:00:00 2001 From: William Victor Mote Date: Mon, 28 Apr 2003 02:30:25 +0000 Subject: [PATCH] Remove propsDone. Unused, probably unneeded, and in the way. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196359 13f79535-47bb-0310-9956-ffa450edef68 --- src/java/org/apache/fop/fo/PropertyListBuilder.java | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/java/org/apache/fop/fo/PropertyListBuilder.java b/src/java/org/apache/fop/fo/PropertyListBuilder.java index 811b35528..fe8bdb2bc 100644 --- a/src/java/org/apache/fop/fo/PropertyListBuilder.java +++ b/src/java/org/apache/fop/fo/PropertyListBuilder.java @@ -137,10 +137,6 @@ public class PropertyListBuilder { HashMap table; table = (HashMap)elementTable.get(elementName); - /* Store names of properties already set. */ - StringBuffer propsDone = new StringBuffer(256); - propsDone.append(' '); - /* * If font-size is set on this FO, must set it first, since * other attributes specified in terms of "ems" depend on it. @@ -158,8 +154,6 @@ public class PropertyListBuilder { /**@todo log this exception */ } } - // Put in the "done" list even if error or no Maker. - propsDone.append(FONTSIZEATTR + ' '); } for (int i = 0; i < attributes.getLength(); i++) { @@ -181,7 +175,6 @@ public class PropertyListBuilder { if (baseValue != null) { baseProp = propertyMaker.make(p, baseValue, parentFO); - propsDone.append(basePropName + ' '); } // else baseProp = propertyMaker.makeCompound(p, parentFO); } -- 2.39.5