summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/kitfox/salamander/writer/SVGWriter.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/com/kitfox/salamander/writer/SVGWriter.java')
-rwxr-xr-xsrc/main/java/com/kitfox/salamander/writer/SVGWriter.java34
1 files changed, 0 insertions, 34 deletions
diff --git a/src/main/java/com/kitfox/salamander/writer/SVGWriter.java b/src/main/java/com/kitfox/salamander/writer/SVGWriter.java
deleted file mode 100755
index 4d51fc5..0000000
--- a/src/main/java/com/kitfox/salamander/writer/SVGWriter.java
+++ /dev/null
@@ -1,34 +0,0 @@
-/*
- * SVGWriter.java
- *
- * Created on April 12, 2007, 7:17 AM
- *
- * To change this template, choose Tools | Template Manager
- * and open the template in the editor.
- */
-
-package com.kitfox.salamander.writer;
-
-import com.kitfox.salamander.SVGConstants;
-import java.io.PrintWriter;
-
-/**
- *
- * @author kitfox
- */
-public class SVGWriter implements SVGConstants
-{
- final PrintWriter pw;
-
- /** Creates a new instance of SVGWriter */
- public SVGWriter(PrintWriter pw)
- {
- this.pw = pw;
- }
-
- private void writeHeader()
- {
- pw.printf("<!DOCTYPE svg %s \"%s\"\n", PUBLIC_IDENTIFIER_SVG, SYSTEM_IDENTIFIER_SVG);
- }
-
-}