summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/kitfox/salamander/svg/paths/SVGPathSegLinetoVerticalAbs.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/com/kitfox/salamander/svg/paths/SVGPathSegLinetoVerticalAbs.java')
-rw-r--r--src/main/java/com/kitfox/salamander/svg/paths/SVGPathSegLinetoVerticalAbs.java22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/main/java/com/kitfox/salamander/svg/paths/SVGPathSegLinetoVerticalAbs.java b/src/main/java/com/kitfox/salamander/svg/paths/SVGPathSegLinetoVerticalAbs.java
deleted file mode 100644
index 3a64b95..0000000
--- a/src/main/java/com/kitfox/salamander/svg/paths/SVGPathSegLinetoVerticalAbs.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 SVGPathSegLinetoVerticalAbs interface corresponds to an "absolute vertical lineto" (V) path data command.
- * @author kitfox
- */
-public interface SVGPathSegLinetoVerticalAbs extends SVGPathSeg
-{
- /**
- * The absolute Y coordinate for the end point of this path segment.
- */
- public float getY();
-}