]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Removal of unnecessary local variable, patch by Andreas Delmille. (Bug 25786)
authorGlen Mazza <gmazza@apache.org>
Mon, 29 Dec 2003 21:19:20 +0000 (21:19 +0000)
committerGlen Mazza <gmazza@apache.org>
Mon, 29 Dec 2003 21:19:20 +0000 (21:19 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@197075 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/fop/layoutmgr/table/Cell.java

index a89dcd1d90416bfb071c005d67f6dde4ee1908ff..0ccffe6e8afc4f334bfff52d7b78349d1aaaf114 100644 (file)
@@ -126,13 +126,12 @@ public class Cell extends BlockStackingLayoutManager {
                 continue;
             }
             // Set up a LayoutContext
-            int ipd = context.getRefIPD();
             BreakPoss bp;
 
             LayoutContext childLC = new LayoutContext(0);
             childLC.setStackLimit(MinOptMax.subtract(context.getStackLimit(),
                                      stackSize));
-            childLC.setRefIPD(ipd);
+            childLC.setRefIPD(cellIPD);
 
             boolean over = false;