Basic reformat, hit once, hope never again

This commit is contained in:
thatsIch
2015-04-03 08:54:31 +02:00
parent 4ff1631f89
commit d34c988c88
886 changed files with 31400 additions and 30990 deletions
@@ -18,32 +18,35 @@
package appeng.container.slot;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.inventory.IInventory;
import net.minecraft.inventory.Slot;
import net.minecraft.item.ItemStack;
public class NullSlot extends Slot
{
public NullSlot() {
public NullSlot()
{
super( null, 0, 0, 0 );
}
@Override
public void onSlotChange(ItemStack par1ItemStack, ItemStack par2ItemStack)
public void onSlotChange( ItemStack par1ItemStack, ItemStack par2ItemStack )
{
}
@Override
public void onPickupFromSlot(EntityPlayer par1EntityPlayer, ItemStack par2ItemStack)
public void onPickupFromSlot( EntityPlayer par1EntityPlayer, ItemStack par2ItemStack )
{
}
@Override
public boolean isItemValid(ItemStack par1ItemStack)
public boolean isItemValid( ItemStack par1ItemStack )
{
return false;
}
@@ -55,7 +58,7 @@ public class NullSlot extends Slot
}
@Override
public void putStack(ItemStack par1ItemStack)
public void putStack( ItemStack par1ItemStack )
{
}
@@ -73,19 +76,19 @@ public class NullSlot extends Slot
}
@Override
public ItemStack decrStackSize(int par1)
public ItemStack decrStackSize( int par1 )
{
return null;
}
@Override
public boolean isSlotInInventory(IInventory par1IInventory, int par2)
public boolean isSlotInInventory( IInventory par1IInventory, int par2 )
{
return false;
}
@Override
public boolean canTakeStack(EntityPlayer par1EntityPlayer)
public boolean canTakeStack( EntityPlayer par1EntityPlayer )
{
return false;
}