removed terrible abusion of underscore paradigm in Scale ctor.
This commit is contained in:
parent
f22e470d4d
commit
1f2903272e
@ -8,11 +8,11 @@ public class Scale extends Field {
|
||||
private int threshold;
|
||||
private int weight;
|
||||
|
||||
public Scale(Gate gate, int _threshold){
|
||||
public Scale(Gate gate, int threshold){
|
||||
Menu.addTab();
|
||||
System.out.println(">" + "[" + ":" + this.getClass().getSimpleName() + "]" + Menu.tabulator + "Scale.Scale(" + gate + ")");
|
||||
gateConnected = gate;
|
||||
threshold = _threshold;
|
||||
this.threshold = threshold;
|
||||
itemsOnTile = new Stack<Pickable>();
|
||||
System.out.println("<" + "[" + ":" + this.getClass().getSimpleName() + "]" + Menu.tabulator + "Scale.Scale()");
|
||||
Menu.removeTab();
|
||||
|
Loading…
Reference in New Issue
Block a user