trackeditor: remove unused variable

git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9247 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 9439c012f5136c768f0c7f225b7fc53fbd8f9151
Former-commit-id: 6b4be58bf4b31da1a3ea44c281921ade0488152d
This commit is contained in:
iobyte 2024-01-17 00:51:52 +00:00
parent 2585bf1163
commit 9b811582d0

View file

@ -62,10 +62,9 @@ public class SegmentSlider extends JPanel
private double min; private double min;
private double max; private double max;
private double defaultValue; private double defaultValue;
private double resolution = Double.NaN; private double resolution;
private String method; private String method;
private Object parent; private double value = Double.NaN;;
private double value;
private NumberFormat nf; private NumberFormat nf;
/** /**
@ -79,7 +78,6 @@ public class SegmentSlider extends JPanel
this.defaultValue = defaultValue; this.defaultValue = defaultValue;
this.resolution = resolution; this.resolution = resolution;
initialize(); initialize();
this.parent = this.getParent();
new SliderLink(); new SliderLink();
} }
@ -96,7 +94,6 @@ public class SegmentSlider extends JPanel
this.method = method; this.method = method;
this.optional = optional; this.optional = optional;
initialize(); initialize();
this.parent = this.getParent();
new SliderLink(); new SliderLink();
setValue(value); setValue(value);
setOptional(optional); setOptional(optional);