From c481e5f26e650355411efbe5a678d7354b26fb94 Mon Sep 17 00:00:00 2001 From: Peter Bernard West Date: Wed, 13 Nov 2002 04:06:24 +0000 Subject: [PATCH] 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 --- src/org/apache/fop/fo/FoRoot.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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); } /** -- 2.39.5