[FOray-commit] SF.net SVN: foray: [10245] trunk/foray
Modular XSL-FO Implementation for Java.
Status: Alpha
Brought to you by:
victormote
|
From: <vic...@us...> - 2007-10-05 18:26:48
|
Revision: 10245
http://foray.svn.sourceforge.net/foray/?rev=10245&view=rev
Author: victormote
Date: 2007-10-05 11:26:52 -0700 (Fri, 05 Oct 2007)
Log Message:
-----------
Conform to axsl changes removing unnecessary parameter.
Modified Paths:
--------------
trunk/foray/foray-graphic/src/java/org/foray/graphic/SVGGraphic.java
trunk/foray/foray-render/src/java/org/foray/render/awt/AWTRenderer.java
Modified: trunk/foray/foray-graphic/src/java/org/foray/graphic/SVGGraphic.java
===================================================================
--- trunk/foray/foray-graphic/src/java/org/foray/graphic/SVGGraphic.java 2007-10-05 18:17:19 UTC (rev 10244)
+++ trunk/foray/foray-graphic/src/java/org/foray/graphic/SVGGraphic.java 2007-10-05 18:26:52 UTC (rev 10245)
@@ -230,8 +230,7 @@
* {@inheritDoc}
*/
public void drawGraphics2D(final Graphics2D graphics,
- final Rectangle2D.Float contentRectangle,
- final Rectangle2D.Float clipRectangle, final int pageHeight) {
+ final Rectangle2D.Float contentRectangle, final int pageHeight) {
SVGDocument svgDocument;
try {
svgDocument = this.getSvgDocument();
Modified: trunk/foray/foray-render/src/java/org/foray/render/awt/AWTRenderer.java
===================================================================
--- trunk/foray/foray-render/src/java/org/foray/render/awt/AWTRenderer.java 2007-10-05 18:17:19 UTC (rev 10244)
+++ trunk/foray/foray-render/src/java/org/foray/render/awt/AWTRenderer.java 2007-10-05 18:26:52 UTC (rev 10245)
@@ -745,7 +745,7 @@
final Rectangle2D.Float clipRectangle) {
try {
graphic.drawGraphics2D(this.graphics, contentRectangle,
- clipRectangle, this.pageHeight);
+ this.pageHeight);
} catch (final GraphicException e) {
/* TODO: Consider logging/displaying a warning. */
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|