diff options
Diffstat (limited to 'src/Java/gtPlusPlus/core/slots/SlotGtTool.java')
-rw-r--r-- | src/Java/gtPlusPlus/core/slots/SlotGtTool.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Java/gtPlusPlus/core/slots/SlotGtTool.java b/src/Java/gtPlusPlus/core/slots/SlotGtTool.java index cdea2fa43f..a2fd83baee 100644 --- a/src/Java/gtPlusPlus/core/slots/SlotGtTool.java +++ b/src/Java/gtPlusPlus/core/slots/SlotGtTool.java @@ -8,18 +8,18 @@ import net.minecraft.item.ItemStack; public class SlotGtTool extends Slot{ - public SlotGtTool(IInventory inventory, int x, int y, int z) { + public SlotGtTool(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) { if (itemstack.getItem() instanceof GT_MetaGenerated_Tool){ Utils.LOG_WARNING(itemstack.getDisplayName()+" is a valid Tool."); return true; } - Utils.LOG_WARNING(itemstack.getDisplayName()+" is not a valid Tool."); + Utils.LOG_WARNING(itemstack.getDisplayName()+" is not a valid Tool."); return false; } |