Merge pull request #218 from thatsIch/localvars

Remove redundant local variables
This commit is contained in:
Chris
2014-10-01 20:23:56 -07:00
21 changed files with 58 additions and 88 deletions
@@ -80,12 +80,10 @@ public class ShapelessRecipe implements IRecipe, IRecipeBakeable
{
boolean inRecipe = false;
for (Object aRequired : required)
for (Object next : required)
{
boolean match = false;
Object next = aRequired;
if ( next instanceof IIngredient )
{
try