diff options
| author | Unknown <shekwancheung0528@gmail.com> | 2019-06-19 15:49:04 +0800 |
|---|---|---|
| committer | Unknown <shekwancheung0528@gmail.com> | 2019-06-19 15:49:04 +0800 |
| commit | 7d593ec3ab105a571f7ec04828557d406d3344d5 (patch) | |
| tree | 38dd3bd53f7343df7f0ed61d18a5c01ee2306fde /src/main/java/me/shedaniel/rei/api/RecipeHelper.java | |
| parent | 6ad47cbb6e26bf74b1f432f59c5779c5905297dd (diff) | |
| download | RoughlyEnoughItems-7d593ec3ab105a571f7ec04828557d406d3344d5.tar.gz RoughlyEnoughItems-7d593ec3ab105a571f7ec04828557d406d3344d5.tar.bz2 RoughlyEnoughItems-7d593ec3ab105a571f7ec04828557d406d3344d5.zip | |
stuff
Diffstat (limited to 'src/main/java/me/shedaniel/rei/api/RecipeHelper.java')
| -rw-r--r-- | src/main/java/me/shedaniel/rei/api/RecipeHelper.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main/java/me/shedaniel/rei/api/RecipeHelper.java b/src/main/java/me/shedaniel/rei/api/RecipeHelper.java index d6f2f80fa..f7ddec0c0 100644 --- a/src/main/java/me/shedaniel/rei/api/RecipeHelper.java +++ b/src/main/java/me/shedaniel/rei/api/RecipeHelper.java @@ -92,7 +92,7 @@ public interface RecipeHelper { * @param stack the stack to be crafted * @return the map of recipes */ - Map<RecipeCategory, List<RecipeDisplay>> getRecipesFor(ItemStack stack); + Map<RecipeCategory<?>, List<RecipeDisplay>> getRecipesFor(ItemStack stack); RecipeCategory getCategory(Identifier identifier); @@ -116,7 +116,7 @@ public interface RecipeHelper { * @param stack the stack to be used * @return the map of recipes */ - Map<RecipeCategory, List<RecipeDisplay>> getUsagesFor(ItemStack stack); + Map<RecipeCategory<?>, List<RecipeDisplay>> getUsagesFor(ItemStack stack); /** * Gets the optional of the speed crafting button area from a category @@ -155,7 +155,7 @@ public interface RecipeHelper { * * @return the map of recipes */ - Map<RecipeCategory, List<RecipeDisplay>> getAllRecipes(); + Map<RecipeCategory<?>, List<RecipeDisplay>> getAllRecipes(); List<RecipeDisplay> getAllRecipesFromCategory(RecipeCategory category); |
