Remove redundant local variables

This commit is contained in:
thatsIch
2014-10-01 11:34:27 +02:00
parent e1627734b1
commit cd064ec05c
21 changed files with 59 additions and 89 deletions
@@ -65,8 +65,7 @@ public class NEICraftingHandler implements IOverlayHandler
{
if ( slot instanceof SlotCraftingMatrix || slot instanceof SlotFakeCraftingMatrix )
{
Slot ctSlot = slot;
if ( ctSlot.getSlotIndex() == col + row * 3 )
if ( slot.getSlotIndex() == col + row * 3 )
{
NBTTagList tags = new NBTTagList();
List<ItemStack> list = new LinkedList<ItemStack>();
@@ -91,7 +90,7 @@ public class NEICraftingHandler implements IOverlayHandler
tags.appendTag( tag );
}
recipe.setTag( "#" + ctSlot.getSlotIndex(), tags );
recipe.setTag( "#" + slot.getSlotIndex(), tags );
break;
}
}