Remove redundant local variables
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user