]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Two stray isBogus()es removed, AFAICT unnecessary childLC initialization
authorGlen Mazza <gmazza@apache.org>
Sat, 4 Jun 2005 04:47:31 +0000 (04:47 +0000)
committerGlen Mazza <gmazza@apache.org>
Sat, 4 Jun 2005 04:47:31 +0000 (04:47 +0000)
removed from PSLM.

git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@198716 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/fop/layoutmgr/ContentLayoutManager.java
src/java/org/apache/fop/layoutmgr/PageSequenceLayoutManager.java

index 08885990bada831b50a8f45f105f6d7dd158daf4..05c8c6b0e17acc94e65b8212b57a1bfb61619425 100644 (file)
@@ -165,11 +165,6 @@ public class ContentLayoutManager implements InlineLevelLayoutManager {
         return true;
     }
 
-    /** @see org.apache.fop.layoutmgr.LayoutManager#isBogus() */
-    public boolean isBogus() {
-        return false;
-    }
-
     /** @see org.apache.fop.layoutmgr.LayoutManager */
     public Area getParentArea(Area childArea) {
         return holder;
index 36d3398faa0cec20b2c565e73eafdcce8f853d20..f5611051f6f2df8394c9b34eaa4d6b133a596743 100644 (file)
@@ -302,27 +302,12 @@ public class PageSequenceLayoutManager extends AbstractLayoutManager {
         
     }
     
-    /** @see org.apache.fop.layoutmgr.LayoutManager#isBogus() */
-    public boolean isBogus() {
-        return false;
-    }
-    
     /**
-     * Get the next break possibility.
-     * This finds the next break for a page which is always at the end
-     * of the page.
-     *
-     * @param context the layout context for finding breaks
-     * @return the break for the page
+     * @see org.apache.fop.layoutmgr.LayoutManager#getNextKnuthElements(Layout Context, int)
      */
     public LinkedList getNextKnuthElements(LayoutContext context, int alignment) {       
-        LinkedList returnedList = null;
-
         while (!childFLM.isFinished()) {
-            LayoutContext childLC = new LayoutContext(0);
-            childLC.setStackLimit(context.getStackLimit());
-            childLC.setRefIPD(context.getRefIPD());
-            returnedList = childFLM.getNextKnuthElements(childLC, alignment);
+            LinkedList returnedList = childFLM.getNextKnuthElements(context, alignment);
 
             if (returnedList != null) {
                 return returnedList;