summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/kitfox/salamander/svg/paths/SVGPathSegLinetoVerticalRel.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/com/kitfox/salamander/svg/paths/SVGPathSegLinetoVerticalRel.java')
-rw-r--r--src/main/java/com/kitfox/salamander/svg/paths/SVGPathSegLinetoVerticalRel.java22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/main/java/com/kitfox/salamander/svg/paths/SVGPathSegLinetoVerticalRel.java b/src/main/java/com/kitfox/salamander/svg/paths/SVGPathSegLinetoVerticalRel.java
deleted file mode 100644
index e2af8af..0000000
--- a/src/main/java/com/kitfox/salamander/svg/paths/SVGPathSegLinetoVerticalRel.java
+++ /dev/null
@@ -1,22 +0,0 @@
-/*
- * SVGPathSegClosePath.java
- *
- * Created on April 12, 2007, 8:59 PM
- *
- * To change this template, choose Tools | Template Manager
- * and open the template in the editor.
- */
-
-package com.kitfox.salamander.svg.paths;
-
-/**
- * The SVGPathSegLinetoVerticalRel interface corresponds to a "relative vertical lineto" (v) path data command.
- * @author kitfox
- */
-public interface SVGPathSegLinetoVerticalRel extends SVGPathSeg
-{
- /**
- * The relative Y coordinate for the end point of this path segment.
- */
- public float getY();
-}