You are viewing a plain text version of this content. The canonical link for it is here.
Posted to fop-commits@xmlgraphics.apache.org by ad...@apache.org on 2008/05/08 02:18:14 UTC

svn commit: r654338 - /xmlgraphics/fop/trunk/src/java/org/apache/fop/fo/flow/table/TableFObj.java

Author: adelmelle
Date: Wed May  7 17:18:14 2008
New Revision: 654338

URL: http://svn.apache.org/viewvc?rev=654338&view=rev
Log:
Removed inadvertently added override [Avoid late night commits...]

Modified:
    xmlgraphics/fop/trunk/src/java/org/apache/fop/fo/flow/table/TableFObj.java

Modified: xmlgraphics/fop/trunk/src/java/org/apache/fop/fo/flow/table/TableFObj.java
URL: http://svn.apache.org/viewvc/xmlgraphics/fop/trunk/src/java/org/apache/fop/fo/flow/table/TableFObj.java?rev=654338&r1=654337&r2=654338&view=diff
==============================================================================
--- xmlgraphics/fop/trunk/src/java/org/apache/fop/fo/flow/table/TableFObj.java (original)
+++ xmlgraphics/fop/trunk/src/java/org/apache/fop/fo/flow/table/TableFObj.java Wed May  7 17:18:14 2008
@@ -170,29 +170,6 @@
 
             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} */



---------------------------------------------------------------------
To unsubscribe, e-mail: fop-commits-unsubscribe@xmlgraphics.apache.org
For additional commands, e-mail: fop-commits-help@xmlgraphics.apache.org