From: Andreas L. Delmelle Date: Thu, 8 May 2008 00:18:14 +0000 (+0000) Subject: Removed inadvertently added override [Avoid late night commits...] X-Git-Tag: fop-1_0~651 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=faa85b230ffb2e7819d5ad8a4ae03c70a11af550;p=xmlgraphics-fop.git Removed inadvertently added override [Avoid late night commits...] git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@654338 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/java/org/apache/fop/fo/flow/table/TableFObj.java b/src/java/org/apache/fop/fo/flow/table/TableFObj.java index 731b2f77f..8fd56a085 100644 --- a/src/java/org/apache/fop/fo/flow/table/TableFObj.java +++ b/src/java/org/apache/fop/fo/flow/table/TableFObj.java @@ -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} */