]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Bugfix for flow IPD not being set correctly.
authorJeremias Maerki <jeremias@apache.org>
Tue, 17 May 2005 16:47:23 +0000 (16:47 +0000)
committerJeremias Maerki <jeremias@apache.org>
Tue, 17 May 2005 16:47:23 +0000 (16:47 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@198639 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/fop/area/Span.java

index 626719d07e27fb08d057a352fa5772c28875417f..000908c75ae46c68bc2f632ffd9af6a9eb784405 100644 (file)
@@ -60,9 +60,8 @@ public class Span extends Area {
         flowAreas = new java.util.ArrayList(colCount);        
         colWidth = (ipd - ((colCount - 1) * colGap)) / colCount;
 
-        for (int i=0; i< colCount; i++) {
+        for (int i = 0; i < colCount; i++) {
             NormalFlow newFlow = new NormalFlow(colWidth);
-            newFlow.setIPD(getIPD());
             flowAreas.add(newFlow);
         }
     }
@@ -105,9 +104,9 @@ public class Span extends Area {
         if (colRequested >= 0 && colRequested < colCount) {
             return (NormalFlow) flowAreas.get(colRequested);
         } else { // internal error
-            throw new IllegalArgumentException("Invalid column number " 
-                    colRequested + " requested; only 0-" + (colCount-1) +
-                    " available.");
+            throw new IllegalArgumentException("Invalid column number " 
+                    + colRequested + " requested; only 0-" + (colCount - 1) 
+                    " available.");
         }
     }
     
@@ -131,8 +130,7 @@ public class Span extends Area {
             curFlowIdx++;
             return getNormalFlow(curFlowIdx);
         } else {
-            throw new IllegalStateException("(Internal error.)" +
-                    " No more flows left in span.");
+            throw new IllegalStateException("(Internal error.) No more flows left in span.");
         }
     }
     
@@ -143,7 +141,7 @@ public class Span extends Area {
      * false otherwise.
      */
     public boolean hasMoreFlows() {
-        return (curFlowIdx < colCount-1); 
+        return (curFlowIdx < colCount - 1); 
     }
 }