]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Removed inadvertently added override [Avoid late night commits...]
authorAndreas L. Delmelle <adelmelle@apache.org>
Thu, 8 May 2008 00:18:14 +0000 (00:18 +0000)
committerAndreas L. Delmelle <adelmelle@apache.org>
Thu, 8 May 2008 00:18:14 +0000 (00:18 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@654338 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/fop/fo/flow/table/TableFObj.java

index 731b2f77f91a6f18670f4cfe2957560d52387776..8fd56a0851bebe458809a0bc5f4cbaa94b4ce34b 100644 (file)
@@ -170,29 +170,6 @@ public abstract class TableFObj extends FObj {
 
             return p;
         }
-
-        /**
-         * If the value is not positive, return a property with value of the next
-         * free column number 
-         *
-         * {@inheritDoc}
-         */
-        public Property convertProperty(Property p,
-                                        PropertyList propertyList, FObj fo)
-                    throws PropertyException {
-            if (p instanceof EnumProperty) {
-                return EnumNumber.getInstance(p);
-            }
-            Number val = p.getNumber();
-            if (val != null) {
-                int i = val.intValue();
-                if (i <= 0) {
-                    i = 1;
-                }
-                return NumberProperty.getInstance(i);
-            }
-            return convertPropertyDatatype(p, propertyList, fo);
-        }
     }
 
     /** {@inheritDoc} */