Index: src/java/org/apache/fop/layoutmgr/BalancingColumnBreakingAlgorithm.java
===================================================================
--- src/java/org/apache/fop/layoutmgr/BalancingColumnBreakingAlgorithm.java	(revision 1423373)
+++ src/java/org/apache/fop/layoutmgr/BalancingColumnBreakingAlgorithm.java	(working copy)
@@ -63,8 +63,8 @@
             return demerits;
         }
         for (int breakPos = 0; breakPos < curPossibility.size(); breakPos++) {
-            if (curPossibility.get(breakPos) != 0 &&
-                    !curPossibility.get(breakPos).equals(idealBreaks.get(breakPos))) {
+            if (curPossibility.get(breakPos) != 0
+                    && !curPossibility.get(breakPos).equals(idealBreaks.get(breakPos))) {
                 notIdeal = true;
                 break;
             }
Index: src/java/org/apache/fop/fo/FObj.java
===================================================================
--- src/java/org/apache/fop/fo/FObj.java	(revision 1423373)
+++ src/java/org/apache/fop/fo/FObj.java	(working copy)
@@ -25,6 +25,7 @@
 import java.util.List;
 import java.util.ListIterator;
 import java.util.Map;
+import java.util.Map.Entry;
 import java.util.NoSuchElementException;
 import java.util.Set;
 
@@ -132,12 +133,13 @@
     private void warnOnUnknownProperties(Attributes attlist, String objName, PropertyList propertyList)
             throws FOPException {
         Map<String, Property> unknowns = propertyList.getUnknownPropertyValues();
-        for (String propertyValue : unknowns.keySet()) {
+        for (Entry<String, Property> value : unknowns.entrySet()) {
+            String unknownProperty = value.getKey();
             FOValidationEventProducer producer = FOValidationEventProducer.Provider.get(getUserAgent()
                     .getEventBroadcaster());
             producer.invalidPropertyValue(this, objName,
-                    getAttributeNameForValue(attlist, unknowns.get(propertyValue), propertyList),
-                    propertyValue, null,
+                    getAttributeNameForValue(attlist, unknowns.get(unknownProperty), propertyList),
+                    unknownProperty, null,
                     getLocator());
         }
     }
Index: src/java/org/apache/fop/area/inline/InlineArea.java
===================================================================
--- src/java/org/apache/fop/area/inline/InlineArea.java	(revision 1423373)
+++ src/java/org/apache/fop/area/inline/InlineArea.java	(working copy)
@@ -270,7 +270,7 @@
             storedIPDVariation += ipdVariation;
         }
     }
-    
+
     /**
      * Returns the offset that this area would have if its offset and size were taking
      * children areas into account. The bpd of an inline area is taken from its nominal
Index: src/java/org/apache/fop/area/inline/InlineParent.java
===================================================================
--- src/java/org/apache/fop/area/inline/InlineParent.java	(revision 1423373)
+++ src/java/org/apache/fop/area/inline/InlineParent.java	(working copy)
@@ -19,10 +19,9 @@
 
 package org.apache.fop.area.inline;
 
-import java.util.Iterator;
 import java.util.ArrayList;
+import java.util.Iterator;
 import java.util.List;
-import java.lang.Math;
 
 import org.apache.fop.area.Area;
 
@@ -41,10 +40,10 @@
 
     /** Controls whether the IPD is automatically adjusted based on the area's children. */
     protected transient boolean autoSize;
-    
+
     /** The offset of the <q>beforest</q> child area of this area. */
     protected int minChildOffset;
-    
+
     /**
      * The offset of the <q>afterest</q> child area of this area. Offset from the
      * before-edge of this area's content-rectangle and the after-edge of the child area's
