diff options
Diffstat (limited to 'src/org/apache/fop/fo/flow/ListItem.java')
-rw-r--r-- | src/org/apache/fop/fo/flow/ListItem.java | 16 |
1 files changed, 2 insertions, 14 deletions
diff --git a/src/org/apache/fop/fo/flow/ListItem.java b/src/org/apache/fop/fo/flow/ListItem.java index 683a2b024..06d802cfe 100644 --- a/src/org/apache/fop/fo/flow/ListItem.java +++ b/src/org/apache/fop/fo/flow/ListItem.java @@ -20,18 +20,6 @@ import java.util.Enumeration; public class ListItem extends FObj { - public static class Maker extends FObj.Maker { - public FObj make(FObj parent, - PropertyList propertyList) throws FOPException { - return new ListItem(parent, propertyList); - } - - } - - public static FObj.Maker maker() { - return new ListItem.Maker(); - } - int align; int alignLast; int breakBefore; @@ -44,8 +32,8 @@ public class ListItem extends FObj { String id; BlockArea blockArea; - public ListItem(FObj parent, PropertyList propertyList) { - super(parent, propertyList); + public ListItem(FObj parent) { + super(parent); this.name = "fo:list-item"; } |