[FOray-commit] SF.net SVN: foray: [7642] trunk/foray/foray-areatree/src/java/org/foray/area
Modular XSL-FO Implementation for Java.
Status: Alpha
Brought to you by:
victormote
|
From: <vic...@us...> - 2006-06-16 00:38:18
|
Revision: 7642 Author: victormote Date: 2006-06-15 17:38:13 -0700 (Thu, 15 Jun 2006) ViewCVS: http://svn.sourceforge.net/foray/?rev=7642&view=rev Log Message: ----------- Conform to axsl change: Remove unneeded parameter. Modified Paths: -------------- trunk/foray/foray-areatree/src/java/org/foray/area/Area.java trunk/foray/foray-areatree/src/java/org/foray/area/RegionRA.java Modified: trunk/foray/foray-areatree/src/java/org/foray/area/Area.java =================================================================== --- trunk/foray/foray-areatree/src/java/org/foray/area/Area.java 2006-06-16 00:37:58 UTC (rev 7641) +++ trunk/foray/foray-areatree/src/java/org/foray/area/Area.java 2006-06-16 00:38:13 UTC (rev 7642) @@ -1018,7 +1018,7 @@ } public int traitExtent() { - return traitGeneratedBy().traitExtent(this); + return traitGeneratedBy().traitExtent(); } public short traitWhiteSpaceTreatment() { Modified: trunk/foray/foray-areatree/src/java/org/foray/area/RegionRA.java =================================================================== --- trunk/foray/foray-areatree/src/java/org/foray/area/RegionRA.java 2006-06-16 00:37:58 UTC (rev 7641) +++ trunk/foray/foray-areatree/src/java/org/foray/area/RegionRA.java 2006-06-16 00:38:13 UTC (rev 7642) @@ -53,7 +53,7 @@ public int crBPD() { if (this.generatedBy.getFONode() instanceof RegionBefore || this.generatedBy.getFONode() instanceof RegionAfter) { - return traitGeneratedBy().traitExtent(this); + return traitGeneratedBy().traitExtent(); } return getParentArea().brBPD(); } @@ -61,7 +61,7 @@ public int crIPD() { if (this.generatedBy.getFONode() instanceof RegionStart || this.generatedBy.getFONode() instanceof RegionEnd) { - return traitGeneratedBy().traitExtent(this); + return traitGeneratedBy().traitExtent(); } return getParentArea().brIPD(); } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |