diff options
author | Keiron Liddle <keiron@apache.org> | 2001-07-09 08:17:57 +0000 |
---|---|---|
committer | Keiron Liddle <keiron@apache.org> | 2001-07-09 08:17:57 +0000 |
commit | f12138155f3b9b86f96ea9b4e7308029e6dc5845 (patch) | |
tree | d43976777a0b9f087a12d97b6d3bda028c5e6f60 | |
parent | fb5eabc94fc281e0e59cb56bda66fe57751a81f5 (diff) | |
download | xmlgraphics-fop-f12138155f3b9b86f96ea9b4e7308029e6dc5845.tar.gz xmlgraphics-fop-f12138155f3b9b86f96ea9b4e7308029e6dc5845.zip |
removed unused variable
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@194341 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | src/org/apache/fop/svg/PDFGraphics2D.java | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/org/apache/fop/svg/PDFGraphics2D.java b/src/org/apache/fop/svg/PDFGraphics2D.java index 0993db7f8..7ab314f57 100644 --- a/src/org/apache/fop/svg/PDFGraphics2D.java +++ b/src/org/apache/fop/svg/PDFGraphics2D.java @@ -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(); |