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
@@ -63,10 +63,10 @@ public enum IntegrationType
public final String dspName;
public final String modID;
IntegrationType( IntegrationSide side, String Name, String modid )
IntegrationType( IntegrationSide side, String name, String modid )
{
this.side = side;
this.dspName = Name;
this.dspName = name;
this.modID = modid;
}
@@ -35,12 +35,12 @@ public class BCPipeInventory implements IMEInventory<IAEItemStack>
{
final TileEntity te;
final ForgeDirection dir;
final ForgeDirection direction;
public BCPipeInventory( TileEntity _te, ForgeDirection _dir )
public BCPipeInventory( TileEntity te, ForgeDirection direction )
{
this.te = _te;
this.dir = _dir;
this.te = te;
this.direction = direction;
}
@Override
@@ -48,14 +48,14 @@ public class BCPipeInventory implements IMEInventory<IAEItemStack>
{
if( mode == Actionable.SIMULATE )
{
if( BC.instance.canAddItemsToPipe( this.te, input.getItemStack(), this.dir ) )
if( BC.instance.canAddItemsToPipe( this.te, input.getItemStack(), this.direction ) )
{
return null;
}
return input;
}
if( BC.instance.addItemsToPipe( this.te, input.getItemStack(), this.dir ) )
if( BC.instance.addItemsToPipe( this.te, input.getItemStack(), this.direction ) )
{
return null;
}
@@ -175,9 +175,9 @@ public class CraftGuide extends CraftGuideAPIObject implements IIntegrationModul
}
@Override
public RecipeTemplate createRecipeTemplate( Slot[] slots, ItemStack craftingType, String backgroundTexture, int backgroundX, int backgroundY, String backgroundSelectedTexture, int backgroundSelectedX, int backgroundSelectedY )
public RecipeTemplate createRecipeTemplate( Slot[] slots, ItemStack craftingType, String bgTexture, int bgX, int bgY, String selectedBGTexture, int selectedBGX, int selectedBGY )
{
return this.parent.createRecipeTemplate( slots, craftingType, backgroundTexture, backgroundX, backgroundY, backgroundSelectedTexture, backgroundSelectedX, backgroundSelectedY );
return this.parent.createRecipeTemplate( slots, craftingType, bgTexture, bgX, bgY, selectedBGTexture, selectedBGX, selectedBGY );
}
@Override