[FOray-commit] SF.net SVN: foray: [7409] trunk/foray/foray-fotree/src/java/org/foray/fotree
Modular XSL-FO Implementation for Java.
Status: Alpha
Brought to you by:
victormote
|
From: <vic...@us...> - 2006-06-06 01:45:56
|
Revision: 7409 Author: victormote Date: 2006-06-05 10:41:51 -0700 (Mon, 05 Jun 2006) ViewCVS: http://svn.sourceforge.net/foray/?rev=7409&view=rev Log Message: ----------- Remove unneeded parameter. Modified Paths: -------------- trunk/foray/foray-fotree/src/java/org/foray/fotree/PropertyList.java trunk/foray/foray-fotree/src/java/org/foray/fotree/fo/prop/ContentDimension.java Modified: trunk/foray/foray-fotree/src/java/org/foray/fotree/PropertyList.java =================================================================== --- trunk/foray/foray-fotree/src/java/org/foray/fotree/PropertyList.java 2006-06-05 16:34:08 UTC (rev 7408) +++ trunk/foray/foray-fotree/src/java/org/foray/fotree/PropertyList.java 2006-06-05 17:41:51 UTC (rev 7409) @@ -1364,8 +1364,8 @@ int intrinsicContentDimension, int viewportDimension) { ContentDimension property = getContentDimensionProperty(absoluteAxis); if (property != null) { - return property.getValue(fobj, absoluteAxis, - intrinsicContentDimension, viewportDimension); + return property.getValue(fobj, intrinsicContentDimension, + viewportDimension); } return ContentDimension.getValueNoInstance(intrinsicContentDimension); } Modified: trunk/foray/foray-fotree/src/java/org/foray/fotree/fo/prop/ContentDimension.java =================================================================== --- trunk/foray/foray-fotree/src/java/org/foray/fotree/fo/prop/ContentDimension.java 2006-06-05 16:34:08 UTC (rev 7408) +++ trunk/foray/foray-fotree/src/java/org/foray/fotree/fo/prop/ContentDimension.java 2006-06-05 17:41:51 UTC (rev 7409) @@ -68,8 +68,8 @@ propertyList)); } - public int getValue(FObj fobj, byte absoluteAxis, - int intrinsicContentDimension, int viewportDimension) { + public int getValue(FObj fobj, int intrinsicContentDimension, + int viewportDimension) { if (this.value instanceof PropertyKeyword) { short keyword = ((PropertyKeyword) value).getValue(); switch (keyword) { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |