diff options
Diffstat (limited to 'src/Java/gtPlusPlus/core/slots/SlotNoInput.java')
-rw-r--r-- | src/Java/gtPlusPlus/core/slots/SlotNoInput.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Java/gtPlusPlus/core/slots/SlotNoInput.java b/src/Java/gtPlusPlus/core/slots/SlotNoInput.java index fe51631a5d..3177c24868 100644 --- a/src/Java/gtPlusPlus/core/slots/SlotNoInput.java +++ b/src/Java/gtPlusPlus/core/slots/SlotNoInput.java @@ -6,12 +6,12 @@ import net.minecraft.item.ItemStack; public class SlotNoInput extends Slot{ - public SlotNoInput(IInventory inventory, int x, int y, int z) { + public SlotNoInput(final IInventory inventory, final int x, final int y, final int z) { super(inventory, x, y, z); } @Override - public boolean isItemValid(ItemStack itemstack) { + public boolean isItemValid(final ItemStack itemstack) { return false; } |