diff options
Diffstat (limited to 'src/org/apache/fop/fo/flow/MultiPropertySet.java')
-rw-r--r-- | src/org/apache/fop/fo/flow/MultiPropertySet.java | 17 |
1 files changed, 2 insertions, 15 deletions
diff --git a/src/org/apache/fop/fo/flow/MultiPropertySet.java b/src/org/apache/fop/fo/flow/MultiPropertySet.java index f9c9fb96e..aebff3405 100644 --- a/src/org/apache/fop/fo/flow/MultiPropertySet.java +++ b/src/org/apache/fop/fo/flow/MultiPropertySet.java @@ -18,21 +18,8 @@ import org.apache.fop.apps.FOPException; */ public class MultiPropertySet extends ToBeImplementedElement { - public static class Maker extends FObj.Maker { - public FObj make(FObj parent, - PropertyList propertyList) throws FOPException { - return new MultiPropertySet(parent, propertyList); - } - - } - - public static FObj.Maker maker() { - return new MultiPropertySet.Maker(); - } - - protected MultiPropertySet(FObj parent, PropertyList propertyList) - throws FOPException { - super(parent, propertyList); + public MultiPropertySet(FObj parent) { + super(parent); this.name = "fo:multi-property-set"; } |