]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Organize imports and remove no longer used methods
authorVincent Hennebert <vhennebert@apache.org>
Fri, 6 Jul 2007 08:43:51 +0000 (08:43 +0000)
committerVincent Hennebert <vhennebert@apache.org>
Fri, 6 Jul 2007 08:43:51 +0000 (08:43 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@553792 13f79535-47bb-0310-9956-ffa450edef68

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

index d85683b8a43c0b2378fefe400ff196455177fe7c..0ce81f35118669d39a6f2e1e5dd1585bb6dde85e 100644 (file)
@@ -19,7 +19,6 @@
 
 package org.apache.fop.layoutmgr.table;
 
-import java.util.Arrays;
 import java.util.Iterator;
 import java.util.LinkedList;
 import java.util.List;
@@ -191,15 +190,6 @@ public class TableStepper {
         return getActiveRow().safelyGetGridUnit(column);
     }
 
-    private PrimaryGridUnit getActivePrimaryGridUnit(int column) {
-        GridUnit gu = getActiveGridUnit(column);
-        if (gu == null) {
-            return null;
-        } else {
-            return gu.getPrimary();
-        }
-    }
-
     private void calcTotalHeight() {
         totalHeight = 0;
         for (int i = 0; i < rowGroup.length; i++) {
@@ -615,11 +605,6 @@ public class TableStepper {
         }
     }
 
-    /** @return true if the table uses the separate border model. */
-    private boolean isSeparateBorderModel() {
-        return getTableLM().getTable().isSeparateBorderModel();
-    }
-
     /** @return the table layout manager */
     private TableLayoutManager getTableLM() {
         return this.tclm.getTableLM();