final variables and parameters

This commit is contained in:
thatsIch
2015-09-30 14:24:40 +02:00
parent 059523f543
commit 8b3a954f73
732 changed files with 9253 additions and 9256 deletions
@@ -32,7 +32,7 @@ public final class InvIterator implements Iterator<ItemStack>
private int counter = 0;
public InvIterator( IInventory inventory )
public InvIterator( final IInventory inventory )
{
this.inventory = inventory;
this.size = this.inventory.getSizeInventory();
@@ -47,7 +47,7 @@ public final class InvIterator implements Iterator<ItemStack>
@Override
public ItemStack next()
{
ItemStack result = this.inventory.getStackInSlot( this.counter );
final ItemStack result = this.inventory.getStackInSlot( this.counter );
this.counter++;
return result;