aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/core/slots/SlotNoInput.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/Java/gtPlusPlus/core/slots/SlotNoInput.java')
-rw-r--r--src/Java/gtPlusPlus/core/slots/SlotNoInput.java23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/Java/gtPlusPlus/core/slots/SlotNoInput.java b/src/Java/gtPlusPlus/core/slots/SlotNoInput.java
deleted file mode 100644
index 1a1cf62e2b..0000000000
--- a/src/Java/gtPlusPlus/core/slots/SlotNoInput.java
+++ /dev/null
@@ -1,23 +0,0 @@
-package gtPlusPlus.core.slots;
-
-import net.minecraft.inventory.IInventory;
-import net.minecraft.inventory.Slot;
-import net.minecraft.item.ItemStack;
-
-public class SlotNoInput extends Slot {
-
- public SlotNoInput(final IInventory inventory, final int index, final int x, final int y) {
- super(inventory, index, x, y);
- }
-
- @Override
- public boolean isItemValid(final ItemStack itemstack) {
- return false;
- }
-
- @Override
- public int getSlotStackLimit() {
- return 0;
- }
-
-}