From: Karen Lease Date: Sat, 16 Dec 2000 21:59:46 +0000 (+0000) Subject: Remove convertProperty method in Maker, now handled by generated code X-Git-Tag: pre-columns~5 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=467104226f726a2659a14625a9d0d3462c16732a;p=xmlgraphics-fop.git 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 --- 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) {