Removed methods only forwarding their call to the corresponding super class
This commit is contained in:
parent
29a7ed4a62
commit
53694bdd3a
3 changed files with 0 additions and 24 deletions
|
@ -47,12 +47,6 @@ public class GuiCellWorkbench extends GuiUpgradeable
|
||||||
return ccwb.availableUpgrades() > 0;
|
return ccwb.availableUpgrades() > 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
public void initGui()
|
|
||||||
{
|
|
||||||
super.initGui();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void drawBG(int offsetX, int offsetY, int mouseX, int mouseY)
|
public void drawBG(int offsetX, int offsetY, int mouseX, int mouseY)
|
||||||
{
|
{
|
||||||
|
|
|
@ -40,12 +40,6 @@ public class UpgradeInventory extends AppEngInternalInventory implements IAEAppE
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
public void setInventorySlotContents(int slot, ItemStack newItemStack)
|
|
||||||
{
|
|
||||||
super.setInventorySlotContents( slot, newItemStack );
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean isItemValidForSlot(int i, ItemStack itemstack)
|
public boolean isItemValidForSlot(int i, ItemStack itemstack)
|
||||||
{
|
{
|
||||||
|
|
|
@ -67,18 +67,6 @@ public class PartP2PLiquids extends PartP2PTunnel<PartP2PLiquids> implements IFl
|
||||||
|
|
||||||
private int tmpUsed;
|
private int tmpUsed;
|
||||||
|
|
||||||
@Override
|
|
||||||
public void writeToNBT(NBTTagCompound tag)
|
|
||||||
{
|
|
||||||
super.writeToNBT( tag );
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void readFromNBT(NBTTagCompound tag)
|
|
||||||
{
|
|
||||||
super.readFromNBT( tag );
|
|
||||||
}
|
|
||||||
|
|
||||||
@SideOnly(Side.CLIENT)
|
@SideOnly(Side.CLIENT)
|
||||||
public IIcon getTypeTexture()
|
public IIcon getTypeTexture()
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue