]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Attribute set constants moved from FOPropertySets to FONode.
authorPeter Bernard West <pbwest@apache.org>
Wed, 13 Nov 2002 04:06:24 +0000 (04:06 +0000)
committerPeter Bernard West <pbwest@apache.org>
Wed, 13 Nov 2002 04:06:24 +0000 (04:06 +0000)
numProps arg to FONode constructor removed.

git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/FOP_0-20-0_Alt-Design@195511 13f79535-47bb-0310-9956-ffa450edef68

src/org/apache/fop/fo/FoRoot.java

index 0a7f3f7360cb42d8511346c6b1dde9f1ebf0372e..f4894e7d7e6bf1e0a20dfb322f03aceea2939c69 100644 (file)
@@ -11,7 +11,6 @@
 package org.apache.fop.fo;
 
 import org.apache.fop.apps.FOPException;
-import org.apache.fop.fo.FOPropertySets;
 import org.apache.fop.fo.FObjectNames;
 import org.apache.fop.datastructs.TreeException;
 import org.apache.fop.datatypes.Ints;
@@ -93,8 +92,8 @@ public class FoRoot extends FONode {
         throws TreeException, FOPException, PropertyException
     {
         // This is the root node of the tree; hence the null argument
-        super(foTree, FObjectNames.ROOT, null, event, FOPropertySets.ROOT_SET,
-                sparsePropsMap, sparseIndices, numProps);
+        super(foTree, FObjectNames.ROOT, null, event, FONode.ROOT_SET,
+                sparsePropsMap, sparseIndices);
     }
 
     /**