aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas L. Delmelle <adelmelle@apache.org>2008-05-08 00:18:14 +0000
committerAndreas L. Delmelle <adelmelle@apache.org>2008-05-08 00:18:14 +0000
commitfaa85b230ffb2e7819d5ad8a4ae03c70a11af550 (patch)
tree9601683463616b816a3b8b25323bd0257d26fce6
parent644183c1cfd7e6d3501a010a63b9172c70a1dffc (diff)
downloadxmlgraphics-fop-faa85b230ffb2e7819d5ad8a4ae03c70a11af550.tar.gz
xmlgraphics-fop-faa85b230ffb2e7819d5ad8a4ae03c70a11af550.zip
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
-rw-r--r--src/java/org/apache/fop/fo/flow/table/TableFObj.java23
1 files changed, 0 insertions, 23 deletions
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} */