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
@@ -105,8 +105,7 @@ public class WrapperInvSlot
public IInventory getWrapper(int slot)
{
InternalInterfaceWrapper wrapper = new InternalInterfaceWrapper( inv, slot );
return wrapper;
return new InternalInterfaceWrapper( inv, slot );
}
protected boolean isItemValid(ItemStack itemstack)