Cleaned up a lot of different inspections
This commit is contained in:
parent
0dd0854bd9
commit
70d98455b7
207 changed files with 603 additions and 731 deletions
|
@ -45,7 +45,7 @@ public class AlchemyTableRecipeJEI implements IRecipeWrapper {
|
|||
|
||||
@Override
|
||||
public List<String> getTooltipStrings(int mouseX, int mouseY) {
|
||||
ArrayList<String> ret = new ArrayList<String>();
|
||||
ArrayList<String> ret = new ArrayList<>();
|
||||
if (mouseX >= 58 && mouseX <= 78 && mouseY >= 21 && mouseY <= 34) {
|
||||
ret.add(TextHelper.localize("tooltip.bloodmagic.tier", tier));
|
||||
ret.add(TextHelper.localize("jei.bloodmagic.recipe.lpDrained", syphon));
|
||||
|
|
|
@ -11,7 +11,7 @@ public class ArmourDowngradeRecipeMaker {
|
|||
@Nonnull
|
||||
public static List<ArmourDowngradeRecipeJEI> getRecipes() {
|
||||
List<LivingArmourDowngradeRecipe> recipeList = LivingArmourDowngradeRecipeRegistry.getRecipeList();
|
||||
ArrayList<ArmourDowngradeRecipeJEI> recipes = new ArrayList<ArmourDowngradeRecipeJEI>();
|
||||
ArrayList<ArmourDowngradeRecipeJEI> recipes = new ArrayList<>();
|
||||
|
||||
for (LivingArmourDowngradeRecipe recipe : recipeList)
|
||||
recipes.add(new ArmourDowngradeRecipeJEI(recipe));
|
||||
|
|
|
@ -17,7 +17,7 @@ public class BindingRecipeMaker {
|
|||
public static List<BindingRecipeJEI> getRecipes() {
|
||||
Map<List<ItemStack>, AlchemyArrayRecipeRegistry.AlchemyArrayRecipe> alchemyArrayRecipeMap = AlchemyArrayRecipeRegistry.getRecipes();
|
||||
|
||||
ArrayList<BindingRecipeJEI> recipes = new ArrayList<BindingRecipeJEI>();
|
||||
ArrayList<BindingRecipeJEI> recipes = new ArrayList<>();
|
||||
|
||||
for (Map.Entry<List<ItemStack>, AlchemyArrayRecipeRegistry.AlchemyArrayRecipe> itemStackAlchemyArrayRecipeEntry : alchemyArrayRecipeMap.entrySet()) {
|
||||
List<ItemStack> input = itemStackAlchemyArrayRecipeEntry.getValue().getInput();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue