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
@@ -42,10 +42,10 @@ public class SpatialPylonCluster implements IAECluster
public boolean hasPower;
public boolean hasChannel;
public SpatialPylonCluster( DimensionalCoord _min, DimensionalCoord _max )
public SpatialPylonCluster( DimensionalCoord min, DimensionalCoord max )
{
this.min = _min.copy();
this.max = _max.copy();
this.min = min.copy();
this.max = max.copy();
if( this.min.x != this.max.x )
{