From b025896cf3cb12d0c0369fc490b23cd90e064cea Mon Sep 17 00:00:00 2001 From: Alkalus Date: Tue, 14 Nov 2017 23:36:13 +1000 Subject: % Formatting. --- src/Java/gtPlusPlus/core/slots/SlotGtTool.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/Java/gtPlusPlus/core/slots/SlotGtTool.java') diff --git a/src/Java/gtPlusPlus/core/slots/SlotGtTool.java b/src/Java/gtPlusPlus/core/slots/SlotGtTool.java index a2fd83baee..cfa501eb1e 100644 --- a/src/Java/gtPlusPlus/core/slots/SlotGtTool.java +++ b/src/Java/gtPlusPlus/core/slots/SlotGtTool.java @@ -6,7 +6,7 @@ import net.minecraft.inventory.IInventory; import net.minecraft.inventory.Slot; import net.minecraft.item.ItemStack; -public class SlotGtTool extends Slot{ +public class SlotGtTool extends Slot { public SlotGtTool(final IInventory inventory, final int x, final int y, final int z) { super(inventory, x, y, z); @@ -15,11 +15,11 @@ public class SlotGtTool extends Slot{ @Override public boolean isItemValid(final ItemStack itemstack) { - if (itemstack.getItem() instanceof GT_MetaGenerated_Tool){ - Utils.LOG_WARNING(itemstack.getDisplayName()+" is a valid Tool."); + 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; } -- cgit