diff options
Diffstat (limited to 'src/org/apache/fop/fo/flow/ListItemBody.java')
-rw-r--r-- | src/org/apache/fop/fo/flow/ListItemBody.java | 16 |
1 files changed, 2 insertions, 14 deletions
diff --git a/src/org/apache/fop/fo/flow/ListItemBody.java b/src/org/apache/fop/fo/flow/ListItemBody.java index fa00c4b4d..40ed3a35b 100644 --- a/src/org/apache/fop/fo/flow/ListItemBody.java +++ b/src/org/apache/fop/fo/flow/ListItemBody.java @@ -19,20 +19,8 @@ import java.util.Enumeration; public class ListItemBody extends FObj { - public static class Maker extends FObj.Maker { - public FObj make(FObj parent, - PropertyList propertyList) throws FOPException { - return new ListItemBody(parent, propertyList); - } - - } - - public static FObj.Maker maker() { - return new ListItemBody.Maker(); - } - - public ListItemBody(FObj parent, PropertyList propertyList) { - super(parent, propertyList); + public ListItemBody(FObj parent) { + super(parent); this.name = "fo:list-item-body"; } |