Replace call to simple getter from within class with inlined version

This commit is contained in:
thatsIch
2015-03-26 10:23:59 +01:00
parent e41d6a0289
commit 4b4693498d
22 changed files with 56 additions and 47 deletions
+1 -1
View File
@@ -209,7 +209,7 @@ public class Ingredient implements IIngredient
}
if ( set.length == 0 )
throw new MissingIngredientError( this.getItemName() + " - ore dictionary could not be resolved to any items." );
throw new MissingIngredientError( this.itemName + " - ore dictionary could not be resolved to any items." );
return set;
}