diff options
Diffstat (limited to 'src/org/apache/fop/fo/flow/Footnote.java')
-rw-r--r-- | src/org/apache/fop/fo/flow/Footnote.java | 17 |
1 files changed, 2 insertions, 15 deletions
diff --git a/src/org/apache/fop/fo/flow/Footnote.java b/src/org/apache/fop/fo/flow/Footnote.java index 3348b730d..4cdea7820 100644 --- a/src/org/apache/fop/fo/flow/Footnote.java +++ b/src/org/apache/fop/fo/flow/Footnote.java @@ -20,21 +20,8 @@ import java.util.Vector; public class Footnote extends FObj { - public static class Maker extends FObj.Maker { - public FObj make(FObj parent, - PropertyList propertyList) throws FOPException { - return new Footnote(parent, propertyList); - } - - } - - public static FObj.Maker maker() { - return new Footnote.Maker(); - } - - public Footnote(FObj parent, - PropertyList propertyList) throws FOPException { - super(parent, propertyList); + public Footnote(FObj parent) { + super(parent); this.name = "fo:footnote"; } |