[FOray-commit] SF.net SVN: foray: [8560] 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...> - 2007-01-31 19:02:46
|
Revision: 8560
http://svn.sourceforge.net/foray/?rev=8560&view=rev
Author: victormote
Date: 2007-01-31 11:02:30 -0800 (Wed, 31 Jan 2007)
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/AbsoluteOffset.java
Modified: trunk/foray/foray-fotree/src/java/org/foray/fotree/PropertyList.java
===================================================================
--- trunk/foray/foray-fotree/src/java/org/foray/fotree/PropertyList.java 2007-01-31 18:04:58 UTC (rev 8559)
+++ trunk/foray/foray-fotree/src/java/org/foray/fotree/PropertyList.java 2007-01-31 19:02:30 UTC (rev 8560)
@@ -1323,8 +1323,7 @@
final AbsoluteOffset property = (AbsoluteOffset)
getProperty(propertyType);
if (property != null) {
- return property.getValue(context,
- absoluteDirection, fobj, dimensionContainingBlock);
+ return property.getValue(context, fobj, dimensionContainingBlock);
}
return AbsoluteOffset.getValueNoInstance();
}
Modified: trunk/foray/foray-fotree/src/java/org/foray/fotree/fo/prop/AbsoluteOffset.java
===================================================================
--- trunk/foray/foray-fotree/src/java/org/foray/fotree/fo/prop/AbsoluteOffset.java 2007-01-31 18:04:58 UTC (rev 8559)
+++ trunk/foray/foray-fotree/src/java/org/foray/fotree/fo/prop/AbsoluteOffset.java 2007-01-31 19:02:30 UTC (rev 8560)
@@ -79,8 +79,8 @@
throw unexpectedValue(value, propertyList);
}
- public int getValue(final FOContext context, final byte direction,
- final FObj fobj, final int dimensionContainingBlock) {
+ public int getValue(final FOContext context, final FObj fobj,
+ final int dimensionContainingBlock) {
if (value() instanceof PropertyKeyword) {
final 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.
|