Clean up some leftover porting junk
This commit is contained in:
parent
d58ba72801
commit
49ced9fd0d
1 changed files with 2 additions and 10 deletions
|
@ -69,16 +69,8 @@ public class ClickableSlider extends Clickable {
|
|||
return Math.abs(this.position.x() - x) < this.width() / 2 && Math.abs(this.position.y() + 12 - y) < 4;
|
||||
}
|
||||
|
||||
public double valueInternal() {
|
||||
return this.valueInternal;
|
||||
}
|
||||
|
||||
public void valueInternal_$eq(final double x$1) {
|
||||
this.valueInternal = x$1;
|
||||
}
|
||||
|
||||
public double value() {
|
||||
return this.valueInternal();
|
||||
return this.valueInternal;
|
||||
}
|
||||
|
||||
public void setValueByX(final double x) {
|
||||
|
@ -87,6 +79,6 @@ public class ClickableSlider extends Clickable {
|
|||
}
|
||||
|
||||
public void setValue(final double v) {
|
||||
this.valueInternal_$eq(v);
|
||||
this.valueInternal = v;
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue