diff options
Diffstat (limited to 'src/org/apache/fop/fo/pagination/RegionEnd.java')
-rw-r--r-- | src/org/apache/fop/fo/pagination/RegionEnd.java | 18 |
1 files changed, 2 insertions, 16 deletions
diff --git a/src/org/apache/fop/fo/pagination/RegionEnd.java b/src/org/apache/fop/fo/pagination/RegionEnd.java index 0712af5c0..b1fecf325 100644 --- a/src/org/apache/fop/fo/pagination/RegionEnd.java +++ b/src/org/apache/fop/fo/pagination/RegionEnd.java @@ -17,27 +17,13 @@ import org.apache.fop.apps.FOPException; public class RegionEnd extends Region { - public static class Maker extends FObj.Maker { - public FObj make(FObj parent, - PropertyList propertyList) throws FOPException { - return new RegionEnd(parent, propertyList); - } - - } - - public static FObj.Maker maker() { - return new RegionEnd.Maker(); - } - public static final String REGION_CLASS = "end"; - protected RegionEnd(FObj parent, - PropertyList propertyList) throws FOPException { - super(parent, propertyList); + public RegionEnd(FObj parent) { + super(parent); } - RegionArea makeRegionArea(int allocationRectangleXPosition, int allocationRectangleYPosition, int allocationRectangleWidth, |