]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Minor nit: eliminate stray hungarian...
authorAndreas L. Delmelle <adelmelle@apache.org>
Fri, 14 Jan 2011 22:56:21 +0000 (22:56 +0000)
committerAndreas L. Delmelle <adelmelle@apache.org>
Fri, 14 Jan 2011 22:56:21 +0000 (22:56 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1059195 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/fop/area/inline/InlineParent.java

index 86c9141e681902e096b7909de3494e8b040ba2a3..db8f2f056f7a461bf4992c3611bdc9b3657e33bd 100644 (file)
@@ -85,18 +85,18 @@ public class InlineParent extends InlineArea {
     @Override
     public boolean applyVariationFactor(double variationFactor,
                                         int lineStretch, int lineShrink) {
-        boolean bUnresolvedAreasPresent = false;
+        boolean hasUnresolvedAreas = false;
         int cumulativeIPD = 0;
         // recursively apply variation factor to descendant areas
         for (int i = 0, len = inlines.size(); i < len; i++) {
             InlineArea inline = inlines.get(i);
-            bUnresolvedAreasPresent |= inline.applyVariationFactor(
+            hasUnresolvedAreas |= inline.applyVariationFactor(
                     variationFactor, lineStretch, lineShrink);
             cumulativeIPD += inline.getIPD();  //Update this area's IPD based on changes to children
         }
         setIPD(cumulativeIPD);
 
-        return bUnresolvedAreasPresent;
+        return hasUnresolvedAreas;
     }
 }