]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
A nit: slight performance optimization
authorAndreas L. Delmelle <adelmelle@apache.org>
Mon, 27 Feb 2006 17:51:45 +0000 (17:51 +0000)
committerAndreas L. Delmelle <adelmelle@apache.org>
Mon, 27 Feb 2006 17:51:45 +0000 (17:51 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@381397 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/fop/fo/PropertyList.java

index 17ce3271a1d1620f206bf9e96b9547701bff22ca..7d4b0132d15fea87393bca065fa666bafa697a28 100644 (file)
@@ -293,15 +293,16 @@ public abstract class PropertyList {
             convertAttributeToProperty(attributes, attributeName, 
                     attributeValue);
         }
-            
+        
+        String attributeNS;
         for (int i = 0; i < attributes.getLength(); i++) {
-          /* convert all attributes with the same namespace as the fo element for this fObj */
-          String attributeNS = attributes.getURI(i); 
-          if (attributeNS.length() == 0 || attributeNS.equals(fobj.getNamespaceURI())) {
-              attributeName = attributes.getQName(i);
-              attributeValue = attributes.getValue(i);
-              convertAttributeToProperty(attributes, attributeName, attributeValue);
-          }
+            /* convert all attributes with the same namespace as the fo element for this fObj */
+            attributeNS = attributes.getURI(i); 
+            if (attributeNS.length() == 0 || attributeNS.equals(fobj.getNamespaceURI())) {
+                attributeName = attributes.getQName(i);
+                attributeValue = attributes.getValue(i);
+                convertAttributeToProperty(attributes, attributeName, attributeValue);
+            }
         }
     }