diff options
author | William Victor Mote <vmote@apache.org> | 2003-04-28 02:30:25 +0000 |
---|---|---|
committer | William Victor Mote <vmote@apache.org> | 2003-04-28 02:30:25 +0000 |
commit | cf752debe3858eaed3c87e7be16f0e34ba38eb2f (patch) | |
tree | 035d231a77b8f89a3e7ff205b2dedb69e0ab76d8 /src | |
parent | c28ba5b19280feafac0a0660ac110466fc1fc77c (diff) | |
download | xmlgraphics-fop-cf752debe3858eaed3c87e7be16f0e34ba38eb2f.tar.gz xmlgraphics-fop-cf752debe3858eaed3c87e7be16f0e34ba38eb2f.zip |
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
Diffstat (limited to 'src')
-rw-r--r-- | src/java/org/apache/fop/fo/PropertyListBuilder.java | 7 |
1 files changed, 0 insertions, 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); } |