Assignment replaceable with operator assignment
This commit is contained in:
@@ -30,14 +30,14 @@ import java.util.Map.Entry;
|
||||
import java.util.zip.ZipEntry;
|
||||
import java.util.zip.ZipOutputStream;
|
||||
|
||||
import com.google.common.collect.HashMultimap;
|
||||
|
||||
import net.minecraft.item.ItemStack;
|
||||
|
||||
import cpw.mods.fml.common.LoaderState;
|
||||
import cpw.mods.fml.common.registry.GameRegistry;
|
||||
import cpw.mods.fml.common.registry.GameRegistry.UniqueIdentifier;
|
||||
|
||||
import com.google.common.collect.HashMultimap;
|
||||
|
||||
import appeng.api.AEApi;
|
||||
import appeng.api.exceptions.MissingIngredientError;
|
||||
import appeng.api.exceptions.RecipeError;
|
||||
@@ -392,7 +392,7 @@ public class RecipeHandler implements IRecipeHandler
|
||||
inQuote = !inQuote;
|
||||
break;
|
||||
default:
|
||||
token = token + c;
|
||||
token += c;
|
||||
}
|
||||
}
|
||||
else
|
||||
@@ -437,7 +437,7 @@ public class RecipeHandler implements IRecipeHandler
|
||||
|
||||
break;
|
||||
default:
|
||||
token = token + c;
|
||||
token += c;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user