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
+2 -2
View File
@@ -38,7 +38,7 @@ public class ItemSlot
return this.itemStack == null ? ( this.aeItemStack == null ? null : ( this.itemStack = this.aeItemStack.getItemStack() ) ) : this.itemStack;
}
public void setItemStack( ItemStack is )
public void setItemStack( final ItemStack is )
{
this.aeItemStack = null;
this.itemStack = is;
@@ -49,7 +49,7 @@ public class ItemSlot
return this.aeItemStack == null ? ( this.itemStack == null ? null : ( this.aeItemStack = AEItemStack.create( this.itemStack ) ) ) : this.aeItemStack;
}
public void setAEItemStack( IAEItemStack is )
public void setAEItemStack( final IAEItemStack is )
{
this.aeItemStack = is;
this.itemStack = null;