From c45f96da2f04ba7b62664c5cdd36de8bdcbc0223 Mon Sep 17 00:00:00 2001 From: Jeremias Maerki Date: Sat, 19 Feb 2005 21:27:33 +0000 Subject: [PATCH] Commented stray System.out. Should be replaced by Commons Logging calls or removed in time. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@198446 13f79535-47bb-0310-9956-ffa450edef68 --- src/java/org/apache/fop/svg/PDFGraphics2D.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/java/org/apache/fop/svg/PDFGraphics2D.java b/src/java/org/apache/fop/svg/PDFGraphics2D.java index f1ddb6584..79b93d48b 100644 --- a/src/java/org/apache/fop/svg/PDFGraphics2D.java +++ b/src/java/org/apache/fop/svg/PDFGraphics2D.java @@ -436,7 +436,7 @@ public class PDFGraphics2D extends AbstractGraphics2D { */ public boolean drawImage(Image img, int x, int y, int width, int height, ImageObserver observer) { - System.out.println("drawImage x=" + x + " y=" + y + " width=" + width + " height=" + height + " image=" + img.toString()); + //System.out.println("drawImage x=" + x + " y=" + y + " width=" + width + " height=" + height + " image=" + img.toString()); // first we look to see if we've already added this image to // the pdf document. If so, we just reuse the reference; // otherwise we have to build a FopImage and add it to the pdf @@ -1102,7 +1102,7 @@ public class PDFGraphics2D extends AbstractGraphics2D { * @see #setClip */ public void drawRenderedImage(RenderedImage img, AffineTransform xform) { - System.out.println("drawRenderedImage"); + //System.out.println("drawRenderedImage"); } /** @@ -1137,7 +1137,7 @@ public class PDFGraphics2D extends AbstractGraphics2D { */ public void drawRenderableImage(RenderableImage img, AffineTransform xform) { - System.out.println("drawRenderableImage"); + //System.out.println("drawRenderableImage"); } /** @@ -1579,7 +1579,7 @@ public class PDFGraphics2D extends AbstractGraphics2D { * @param c1 the XOR alternation color */ public void setXORMode(Color c1) { - System.out.println("setXORMode"); + //System.out.println("setXORMode"); } @@ -1604,7 +1604,7 @@ public class PDFGraphics2D extends AbstractGraphics2D { */ public void copyArea(int x, int y, int width, int height, int dx, int dy) { - System.out.println("copyArea"); + //System.out.println("copyArea"); } } -- 2.39.5