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