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
@@ -28,9 +28,9 @@ public class AEGlassMaterial extends Material
public static final AEGlassMaterial INSTANCE = ( new AEGlassMaterial( MapColor.airColor ) );
public AEGlassMaterial( MapColor p_i2116_1_ )
public AEGlassMaterial( MapColor color )
{
super( p_i2116_1_ );
super( color );
}
@Override
@@ -26,6 +26,8 @@ import java.util.LinkedList;
import java.util.List;
import java.util.Set;
import com.google.common.collect.ImmutableSet;
import net.minecraft.block.Block;
import net.minecraft.inventory.IInventory;
import net.minecraft.inventory.ISidedInventory;
@@ -40,8 +42,6 @@ import net.minecraft.util.Vec3;
import net.minecraft.world.World;
import net.minecraftforge.common.util.ForgeDirection;
import com.google.common.collect.ImmutableSet;
import appeng.api.AEApi;
import appeng.api.config.Actionable;
import appeng.api.config.Settings;
@@ -540,7 +540,7 @@ public class DualityInterface implements IGridTickable, IStorageMonitorable, IIn
}
@Override
public TickRateModulation tickingRequest( IGridNode node, int TicksSinceLastCall )
public TickRateModulation tickingRequest( IGridNode node, int ticksSinceLastCall )
{
if( !this.gridProxy.isActive() )
{
@@ -65,7 +65,7 @@ public class LocationRotation implements IOrientable
}
@Override
public void setOrientation( ForgeDirection Forward, ForgeDirection Up )
public void setOrientation( ForgeDirection foward, ForgeDirection up )
{
}
@@ -65,11 +65,11 @@ public class MetaRotation implements IOrientable
}
@Override
public void setOrientation( ForgeDirection Forward, ForgeDirection Up )
public void setOrientation( ForgeDirection foward, ForgeDirection up )
{
if( this.w instanceof World )
{
( (World) this.w ).setBlockMetadataWithNotify( this.x, this.y, this.z, Up.ordinal(), 1 + 2 );
( (World) this.w ).setBlockMetadataWithNotify( this.x, this.y, this.z, up.ordinal(), 1 + 2 );
}
else
{
@@ -51,7 +51,7 @@ public class NullRotation implements IOrientable
}
@Override
public void setOrientation( ForgeDirection Forward, ForgeDirection Up )
public void setOrientation( ForgeDirection forward, ForgeDirection up )
{
}
@@ -37,8 +37,8 @@ public class PlayerSecurityWrapper implements ISecurityRegistry
}
@Override
public void addPlayer( int PlayerID, EnumSet<SecurityPermissions> permissions )
public void addPlayer( int playerID, EnumSet<SecurityPermissions> permissions )
{
this.target.put( PlayerID, permissions );
this.target.put( playerID, permissions );
}
}
+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 );