aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKaren Lease <klease@apache.org>2000-12-16 21:59:46 +0000
committerKaren Lease <klease@apache.org>2000-12-16 21:59:46 +0000
commit467104226f726a2659a14625a9d0d3462c16732a (patch)
tree0007ca6e36574718c4434d5ae37a110127fd0986
parent40959556d3eaa2bac9d3943ccf8e904b3a8a9ba5 (diff)
downloadxmlgraphics-fop-467104226f726a2659a14625a9d0d3462c16732a.tar.gz
xmlgraphics-fop-467104226f726a2659a14625a9d0d3462c16732a.zip
Remove convertProperty method in Maker, now handled by generated code
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@193881 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--src/org/apache/fop/fo/CondLengthProperty.java10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/org/apache/fop/fo/CondLengthProperty.java b/src/org/apache/fop/fo/CondLengthProperty.java
index ed3654a14..fc9556593 100644
--- a/src/org/apache/fop/fo/CondLengthProperty.java
+++ b/src/org/apache/fop/fo/CondLengthProperty.java
@@ -60,16 +60,6 @@ public class CondLengthProperty extends LengthProperty {
public /* protected*/ Maker(String name) {
super(name);
}
-
- protected Property convertProperty(Property p, PropertyList propertyList,
- FObj fo) {
- if (p instanceof CondLengthProperty)
- return p;
- Length val = p.getLength();
- if (val != null)
- return new CondLengthProperty(new CondLength(val));
- return convertPropertyDatatype(p, propertyList, fo);
- }
}
public CondLengthProperty(CondLength length) {