Remove redundant local variables

This commit is contained in:
thatsIch
2014-10-01 11:34:27 +02:00
parent e1627734b1
commit cd064ec05c
21 changed files with 59 additions and 89 deletions
@@ -81,12 +81,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