Replaces all method parameter regarding their naming conventions

This commit is contained in:
thatsIch
2015-05-08 23:25:19 +02:00
parent a44369a272
commit f193c2adc4
76 changed files with 381 additions and 381 deletions
@@ -59,10 +59,10 @@ public class QuantumCluster implements ILocatable, IAECluster
private long otherSide;
private TileQuantumBridge center;
public QuantumCluster( WorldCoord _min, WorldCoord _max )
public QuantumCluster( WorldCoord min, WorldCoord max )
{
this.min = _min;
this.max = _max;
this.min = min;
this.max = max;
this.Ring = new TileQuantumBridge[8];
}