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
+7 -7
View File
@@ -35,7 +35,7 @@ public class Splotch
public final AEColor color;
private final int pos;
public Splotch( AEColor col, boolean lit, ForgeDirection side, Vec3 Pos )
public Splotch( AEColor col, boolean lit, ForgeDirection side, Vec3 position )
{
this.color = col;
this.lumen = lit;
@@ -45,20 +45,20 @@ public class Splotch
if( side == ForgeDirection.SOUTH || side == ForgeDirection.NORTH )
{
x = Pos.xCoord;
y = Pos.yCoord;
x = position.xCoord;
y = position.yCoord;
}
else if( side == ForgeDirection.UP || side == ForgeDirection.DOWN )
{
x = Pos.xCoord;
y = Pos.zCoord;
x = position.xCoord;
y = position.zCoord;
}
else
{
x = Pos.yCoord;
y = Pos.zCoord;
x = position.yCoord;
y = position.zCoord;
}
int a = (int) ( x * 0xF );