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