]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Remove propsDone. Unused, probably unneeded, and in the way.
authorWilliam Victor Mote <vmote@apache.org>
Mon, 28 Apr 2003 02:30:25 +0000 (02:30 +0000)
committerWilliam Victor Mote <vmote@apache.org>
Mon, 28 Apr 2003 02:30:25 +0000 (02:30 +0000)
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

index 811b35528a35d6815150ec4d74276a94b975c31f..fe8bdb2bcbbed95a89c56ca770d0878be09960a5 100644 (file)
@@ -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);
                         }