aboutsummaryrefslogtreecommitdiffstats
path: root/src/java/org/apache/fop
diff options
context:
space:
mode:
Diffstat (limited to 'src/java/org/apache/fop')
-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} */