keiron 01/07/09 01:17:59
Modified: src/org/apache/fop/svg PDFGraphics2D.java
Log:
removed unused variable
Revision Changes Path
1.9 +3 -6 xml-fop/src/org/apache/fop/svg/PDFGraphics2D.java
Index: PDFGraphics2D.java
===================================================================
RCS file: /home/cvs/xml-fop/src/org/apache/fop/svg/PDFGraphics2D.java,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- PDFGraphics2D.java 2001/06/26 12:21:43 1.8
+++ PDFGraphics2D.java 2001/07/09 08:17:57 1.9
@@ -1,4 +1,4 @@
-/* $Id: PDFGraphics2D.java,v 1.8 2001/06/26 12:21:43 keiron Exp $
+/* $Id: PDFGraphics2D.java,v 1.9 2001/07/09 08:17:57 keiron Exp $
* Copyright (C) 2001 The Apache Software Foundation. All rights reserved.
* For details on use and redistribution please refer to the
* LICENSE file included with these sources."
@@ -38,7 +38,7 @@
* implementing a <tt>Graphic2D</tt> piece-meal.
*
* @author <a href="mailto:[EMAIL PROTECTED]">Keiron Liddle</a>
- * @version $Id: PDFGraphics2D.java,v 1.8 2001/06/26 12:21:43 keiron Exp $
+ * @version $Id: PDFGraphics2D.java,v 1.9 2001/07/09 08:17:57 keiron Exp $
* @see org.apache.batik.ext.awt.g2d.AbstractGraphics2D
*/
public class PDFGraphics2D extends AbstractGraphics2D {
@@ -67,8 +67,6 @@
/** the current colour for use in svg */
PDFColor currentColour = new PDFColor(0, 0, 0);
- FontInfo fontInfo;
-
/**
* Create a new PDFGraphics2D with the given pdf document info.
* This is used to create a Graphics object for use inside an already
@@ -388,7 +386,6 @@
currentStream = null;
currentFontName = null;
currentColour = null;
- fontInfo = null;
}
/**
@@ -686,7 +683,7 @@
* @see #setClip
*/
public void drawString(String s, float x, float y) {
- System.out.println("drawString(String)");
+ //System.out.println("drawString(String)");
currentStream.write("BT\n");
Shape imclip = getClip();
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]