]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
removed unused variable
authorKeiron Liddle <keiron@apache.org>
Mon, 9 Jul 2001 08:17:57 +0000 (08:17 +0000)
committerKeiron Liddle <keiron@apache.org>
Mon, 9 Jul 2001 08:17:57 +0000 (08:17 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@194341 13f79535-47bb-0310-9956-ffa450edef68

src/org/apache/fop/svg/PDFGraphics2D.java

index 0993db7f89897b609864155002d2c70ac40310d2..7ab314f570c0eb51077bba0f39a591da889f613e 100644 (file)
@@ -67,8 +67,6 @@ public class PDFGraphics2D extends AbstractGraphics2D {
     /** 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 @@ public class PDFGraphics2D extends AbstractGraphics2D {
         currentStream = null;
         currentFontName = null;
         currentColour = null;
-        fontInfo = null;
     }
 
     /**
@@ -686,7 +683,7 @@ public class PDFGraphics2D extends AbstractGraphics2D {
      * @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();