We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4bc5e62 commit 066d81dCopy full SHA for 066d81d
1 file changed
src/main/java/wprover/DrawData.java
@@ -96,9 +96,9 @@ public static int getWidthCounter() {
96
public static double getWidth(int index) {
97
double d;
98
try {
99
- d = (double) dd.dashlist.get(index);
+ d = (double) dd.widthlist.get(index);
100
} catch (ClassCastException cce) {
101
- d = (int) dd.dashlist.get(index);
+ d = (int) dd.widthlist.get(index);
102
}
103
return d;
104
0 commit comments