removing unused local variables
[org.ibex.core.git] / src / org / ibex / VectorGraphics.java
index a634b67..79fecba 100644 (file)
@@ -663,7 +663,6 @@ public final class VectorGraphics {
             while (pt.hasMoreTokens()) v.addElement(new Float(pt.parseFloat()));
             float[] dashes = new float[v.size() % 2 == 0 ? v.size() : 2 * v.size()];
             for(int i=0; i<dashes.length; i++) dashes[i] = ((Float)v.elementAt(i % v.size())).floatValue();
-            float length = 0;
             int dashpos = dashOffset;
             boolean on = dashpos % 2 == 0;
             for(int i=0; i<numvertices; i++) {