From: Peter Bernard West Date: Wed, 13 Nov 2002 04:06:24 +0000 (+0000) Subject: Attribute set constants moved from FOPropertySets to FONode. X-Git-Tag: Alt-Design_pre_src-java-org~134 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=c481e5f26e650355411efbe5a678d7354b26fb94;p=xmlgraphics-fop.git Attribute set constants moved from FOPropertySets to FONode. 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 --- diff --git a/src/org/apache/fop/fo/FoRoot.java b/src/org/apache/fop/fo/FoRoot.java index 0a7f3f736..f4894e7d7 100644 --- a/src/org/apache/fop/fo/FoRoot.java +++ b/src/org/apache/fop/fo/FoRoot.java @@ -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); } /**