Shorten variable name to fit into the horizontal space.

This commit is contained in:
thatsIch 2014-11-03 00:01:36 +01:00
parent 19fb264b3b
commit 2835e2139d

View file

@ -454,9 +454,9 @@ public class TileIOPort extends AENetworkInvTile implements IUpgradeableHost, IC
{
super.getDrops( w, x, y, z, drops );
for (int upgradeInventoryIndex = 0; upgradeInventoryIndex < this.upgrades.getSizeInventory(); upgradeInventoryIndex++)
for (int upgradeIndex = 0; upgradeIndex < this.upgrades.getSizeInventory(); upgradeIndex++)
{
ItemStack stackInSlot = this.upgrades.getStackInSlot(upgradeInventoryIndex);
ItemStack stackInSlot = this.upgrades.getStackInSlot(upgradeIndex);
if ( stackInSlot != null )
{