]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Removed unused method
authorJeremias Maerki <jeremias@apache.org>
Thu, 28 Jul 2005 21:18:13 +0000 (21:18 +0000)
committerJeremias Maerki <jeremias@apache.org>
Thu, 28 Jul 2005 21:18:13 +0000 (21:18 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@225887 13f79535-47bb-0310-9956-ffa450edef68

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

index df22143e576da798e4ff6280ceffdd0d004c4dee..21d042b8e64dc6217ab83f6f8a5f2047a83ef33e 100644 (file)
@@ -129,24 +129,6 @@ public class PrimaryGridUnit extends GridUnit {
         return contentLength;
     }
 
-    /** 
-     * @return Returns the length of the cell content after the bpd/height attributes on cell
-     * and row have been taken into account.
-     */
-    public int getEffectiveContentLength() {
-        int value = getContentLength();
-        if (!getCell().getBlockProgressionDimension().getMinimum().isAuto()) {
-            value = Math.max(value, 
-                    getCell().getBlockProgressionDimension().getMinimum().getLength().getValue());
-        }
-        if (getRow() != null 
-                && !getRow().getBlockProgressionDimension().getMinimum().isAuto()) {
-            value = Math.max(value, 
-                    getRow().getBlockProgressionDimension().getMinimum().getLength().getValue());
-        }
-        return value;
-    }
-    
     /** @return true if cell/row has an explicit BPD/height */
     public boolean hasBPD() {
         if (!getCell().getBlockProgressionDimension().getOptimum().isAuto()) {