[FOray-commit] SF.net SVN: foray: [7645] 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 01:00:44
|
Revision: 7645 Author: victormote Date: 2006-06-15 18:00:38 -0700 (Thu, 15 Jun 2006) ViewCVS: http://svn.sourceforge.net/foray/?rev=7645&view=rev Log Message: ----------- Conform to axsl changes: Remove unneeded method parameters. Modified Paths: -------------- trunk/foray/foray-areatree/src/java/org/foray/area/Area.java trunk/foray/foray-areatree/src/java/org/foray/area/PageRA.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 01:00:22 UTC (rev 7644) +++ trunk/foray/foray-areatree/src/java/org/foray/area/Area.java 2006-06-16 01:00:38 UTC (rev 7645) @@ -886,11 +886,11 @@ } public int traitPageWidth() { - return traitGeneratedBy().traitPageWidth(this); + return traitGeneratedBy().traitPageWidth(); } public int traitPageHeight() { - return traitGeneratedBy().traitPageHeight(this); + return traitGeneratedBy().traitPageHeight(); } /** Modified: trunk/foray/foray-areatree/src/java/org/foray/area/PageRA.java =================================================================== --- trunk/foray/foray-areatree/src/java/org/foray/area/PageRA.java 2006-06-16 01:00:22 UTC (rev 7644) +++ trunk/foray/foray-areatree/src/java/org/foray/area/PageRA.java 2006-06-16 01:00:38 UTC (rev 7645) @@ -152,11 +152,11 @@ } public int getHeight() { - return traitGeneratedBy().traitPageHeight(this); + return traitGeneratedBy().traitPageHeight(); } public int getWidth() { - return traitGeneratedBy().traitPageWidth(this); + return traitGeneratedBy().traitPageWidth(); } public void registerMarker(Marker marker) { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |