aboutsummaryrefslogtreecommitdiffstats
path: root/src/org/apache/fop/fo/flow/InitialPropertySet.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/org/apache/fop/fo/flow/InitialPropertySet.java')
-rw-r--r--src/org/apache/fop/fo/flow/InitialPropertySet.java17
1 files changed, 2 insertions, 15 deletions
diff --git a/src/org/apache/fop/fo/flow/InitialPropertySet.java b/src/org/apache/fop/fo/flow/InitialPropertySet.java
index aa53341a3..3c081007d 100644
--- a/src/org/apache/fop/fo/flow/InitialPropertySet.java
+++ b/src/org/apache/fop/fo/flow/InitialPropertySet.java
@@ -19,21 +19,8 @@ import org.apache.fop.apps.FOPException;
*/
public class InitialPropertySet extends ToBeImplementedElement {
- public static class Maker extends FObj.Maker {
- public FObj make(FObj parent,
- PropertyList propertyList) throws FOPException {
- return new InitialPropertySet(parent, propertyList);
- }
-
- }
-
- public static FObj.Maker maker() {
- return new InitialPropertySet.Maker();
- }
-
- protected InitialPropertySet(FObj parent, PropertyList propertyList)
- throws FOPException {
- super(parent, propertyList);
+ public InitialPropertySet(FObj parent) {
+ super(parent);
this.name = "fo:initial-property-set";
}