General code cleanup
This commit is contained in:
parent
95b49e5e23
commit
7f8ce535a7
17 changed files with 21 additions and 58 deletions
|
@ -57,27 +57,27 @@ public class TileMachineCasing extends RectangularMultiblockTileEntityBase
|
|||
}
|
||||
|
||||
@Override
|
||||
public void isGoodForFrame() throws MultiblockValidationException {
|
||||
public void isGoodForFrame() {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void isGoodForSides() throws MultiblockValidationException {
|
||||
public void isGoodForSides() {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void isGoodForTop() throws MultiblockValidationException {
|
||||
public void isGoodForTop() {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void isGoodForBottom() throws MultiblockValidationException {
|
||||
public void isGoodForBottom() {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void isGoodForInterior() throws MultiblockValidationException {
|
||||
public void isGoodForInterior() {
|
||||
|
||||
}
|
||||
|
||||
|
|
|
@ -50,11 +50,6 @@ public class TileCreativeSolarPanel extends TilePowerAcceptor implements IToolDr
|
|||
setEnergy(getMaxPower());
|
||||
}
|
||||
|
||||
@Override
|
||||
public void addInfo(final List<String> info, final boolean isRealTile) {
|
||||
super.addInfo(info, isRealTile);
|
||||
}
|
||||
|
||||
@Override
|
||||
public double getBaseMaxPower() {
|
||||
return 1_000_000;
|
||||
|
|
|
@ -127,11 +127,6 @@ public class TileSolarPanel extends TilePowerAcceptor implements IToolDrop {
|
|||
public ItemStack getToolDrop(final EntityPlayer playerIn) {
|
||||
return new ItemStack(ModBlocks.SOLAR_PANEL, 1, panel.ordinal());
|
||||
}
|
||||
|
||||
@Override
|
||||
public void rotate(Rotation rotationIn) {
|
||||
return;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void readFromNBT(NBTTagCompound tag) {
|
||||
|
|
|
@ -294,16 +294,6 @@ public class TileRollingMachine extends TilePowerAcceptor
|
|||
return tagCompound;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void invalidate() {
|
||||
super.invalidate();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onChunkUnload() {
|
||||
super.onChunkUnload();
|
||||
}
|
||||
|
||||
@Override
|
||||
public Inventory getInventory() {
|
||||
return inventory;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue