]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Remove convertProperty method in Maker, now handled by generated code
authorKaren Lease <klease@apache.org>
Sat, 16 Dec 2000 21:59:46 +0000 (21:59 +0000)
committerKaren Lease <klease@apache.org>
Sat, 16 Dec 2000 21:59:46 +0000 (21:59 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@193881 13f79535-47bb-0310-9956-ffa450edef68

src/org/apache/fop/fo/CondLengthProperty.java

index ed3654a142eaf7d25be378163fefd9fd7241f8d6..fc9556593b258e7683e3250fec9b210fcc7dc92d 100644 (file)
@@ -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) {