From 1f6137d24153b62c42da129ce5d6373bbf78ee34 Mon Sep 17 00:00:00 2001 From: shedaniel Date: Mon, 14 Dec 2020 00:10:26 +0800 Subject: The big refactor Signed-off-by: shedaniel --- .../src/main/java/me/shedaniel/rei/api/RecipeDisplay.java | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'RoughlyEnoughItems-api/src/main/java/me/shedaniel/rei/api/RecipeDisplay.java') diff --git a/RoughlyEnoughItems-api/src/main/java/me/shedaniel/rei/api/RecipeDisplay.java b/RoughlyEnoughItems-api/src/main/java/me/shedaniel/rei/api/RecipeDisplay.java index c99eb50a3..582fd09da 100644 --- a/RoughlyEnoughItems-api/src/main/java/me/shedaniel/rei/api/RecipeDisplay.java +++ b/RoughlyEnoughItems-api/src/main/java/me/shedaniel/rei/api/RecipeDisplay.java @@ -36,13 +36,13 @@ public interface RecipeDisplay { * @return a list of inputs */ @NotNull - List> getInputEntries(); + List>> getInputEntries(); /** * @return a list of outputs */ @NotNull - List> getResultingEntries(); + List>> getResultingEntries(); /** * Gets the required items used in craftable filters @@ -50,7 +50,7 @@ public interface RecipeDisplay { * @return the list of required items */ @NotNull - default List> getRequiredEntries() { + default List>> getRequiredEntries() { return Collections.emptyList(); } @@ -71,5 +71,4 @@ public interface RecipeDisplay { default Optional getRecipeLocation() { return Optional.empty(); } - } -- cgit