final variables and parameters

seeing some methods it does actually help to enforce the parameters
This commit is contained in:
thatsIch
2015-09-25 23:10:56 +02:00
parent e52400bf26
commit 410d2f1e0d
819 changed files with 9390 additions and 9396 deletions
+2 -2
View File
@@ -39,7 +39,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;
@@ -50,7 +50,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;