Remove only redirections to super call

This commit is contained in:
thatsIch 2014-10-01 11:18:35 +02:00
parent e1627734b1
commit cc9d89dc73
5 changed files with 0 additions and 36 deletions

View file

@ -632,12 +632,6 @@ public class AEBaseBlock extends BlockContainer implements IAEFeature
super.addCollisionBoxesToList( w, x, y, z, bb, out, e );
}
@Override
public void onBlockDestroyedByPlayer(World par1World, int par2, int par3, int par4, int par5)
{
super.onBlockDestroyedByPlayer( par1World, par2, par3, par4, par5 );
}
public boolean onActivated(World w, int x, int y, int z, EntityPlayer player, int side, float hitX, float hitY, float hitZ)
{
return false;

View file

@ -38,12 +38,6 @@ public class BlockWireless extends AEBaseBlock implements ICustomCollision
return RenderBlockWireless.class;
}
@Override
public IIcon getIcon(int direction, int metadata)
{
return super.getIcon( direction, metadata );
}
@Override
public Iterable<AxisAlignedBB> getSelectedBoundingBoxesFromPool(World w, int x, int y, int z, Entity e, boolean isVisual)
{

View file

@ -32,12 +32,6 @@ public class RenderBlockCraftingCPU extends BaseBlockRender
super( false, 20 );
}
@Override
public void renderInventory(AEBaseBlock blk, ItemStack is, RenderBlocks renderer, ItemRenderType type, Object[] obj)
{
super.renderInventory( blk, is, renderer, type, obj );
}
@Override
public boolean renderInWorld(AEBaseBlock blk, IBlockAccess w, int x, int y, int z, RenderBlocks renderer)
{

View file

@ -43,18 +43,6 @@ public class PartP2PRFPower extends PartP2PTunnel<PartP2PRFPower> implements cof
throw new RuntimeException( "RF Not installed!" );
}
@Override
public void writeToNBT(NBTTagCompound tag)
{
super.writeToNBT( tag );
}
@Override
public void readFromNBT(NBTTagCompound tag)
{
super.readFromNBT( tag );
}
@Override
public void onNeighborChanged()
{

View file

@ -367,12 +367,6 @@ public class PartP2PTunnel<T extends PartP2PTunnel> extends PartBasicState
}
}
@Override
public void setColors(boolean hasChan, boolean hasPower)
{
super.setColors( hasChan, hasPower );
}
@Override
public void getBoxes(IPartCollisionHelper bch)
{