aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--dependencies.gradle2
-rw-r--r--src/main/java/gregtech/nei/GT_NEI_AssLineHandler.java2
-rw-r--r--src/main/java/gregtech/nei/GT_NEI_DefaultHandler.java2
3 files changed, 3 insertions, 3 deletions
diff --git a/dependencies.gradle b/dependencies.gradle
index a195223808..12a607277e 100644
--- a/dependencies.gradle
+++ b/dependencies.gradle
@@ -5,7 +5,7 @@
dependencies {
compile("com.github.GTNewHorizons:StructureLib:1.0.15:dev")
- compile("com.github.GTNewHorizons:NotEnoughItems:2.2.17-GTNH:dev")
+ compile("com.github.GTNewHorizons:NotEnoughItems:2.2.19-GTNH:dev")
compile("com.github.GTNewHorizons:CodeChickenLib:1.1.5.3:dev")
compile("com.github.GTNewHorizons:waila:1.5.18:dev")
diff --git a/src/main/java/gregtech/nei/GT_NEI_AssLineHandler.java b/src/main/java/gregtech/nei/GT_NEI_AssLineHandler.java
index 4b05051528..d79f2375f1 100644
--- a/src/main/java/gregtech/nei/GT_NEI_AssLineHandler.java
+++ b/src/main/java/gregtech/nei/GT_NEI_AssLineHandler.java
@@ -208,7 +208,7 @@ public class GT_NEI_AssLineHandler extends RecipeMapHandler {
}
@Override
- public List<String> handleItemTooltip(GuiRecipe gui, ItemStack aStack, List<String> currenttip, int aRecipeIndex) {
+ public List<String> handleItemTooltip(GuiRecipe<?> gui, ItemStack aStack, List<String> currenttip, int aRecipeIndex) {
CachedRecipe tObject = (CachedRecipe) this.arecipes.get(aRecipeIndex);
if ((tObject instanceof CachedDefaultRecipe)) {
CachedDefaultRecipe tRecipe = (CachedDefaultRecipe) tObject;
diff --git a/src/main/java/gregtech/nei/GT_NEI_DefaultHandler.java b/src/main/java/gregtech/nei/GT_NEI_DefaultHandler.java
index 1d281ce158..69ea959adc 100644
--- a/src/main/java/gregtech/nei/GT_NEI_DefaultHandler.java
+++ b/src/main/java/gregtech/nei/GT_NEI_DefaultHandler.java
@@ -304,7 +304,7 @@ public class GT_NEI_DefaultHandler extends RecipeMapHandler {
}
@Override
- public List<String> handleItemTooltip(GuiRecipe gui, ItemStack aStack, List<String> currenttip, int aRecipeIndex) {
+ public List<String> handleItemTooltip(GuiRecipe<?> gui, ItemStack aStack, List<String> currenttip, int aRecipeIndex) {
CachedRecipe tObject = this.arecipes.get(aRecipeIndex);
if ((tObject instanceof CachedDefaultRecipe)) {
CachedDefaultRecipe tRecipe = (CachedDefaultRecipe) tObject;