trackeditor: remove unused variable

git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9247 30fe4595-0a0c-4342-8851-515496e4dcbd
This commit is contained in:
iobyte 2024-01-17 00:51:52 +00:00
parent 3e7d542075
commit 71d59260ba
1 changed files with 2 additions and 5 deletions

View File

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