From 04f96f866d09002808c2bf6ab1f252f781751617 Mon Sep 17 00:00:00 2001 From: Raph Hennessy Date: Thu, 28 Feb 2019 19:34:01 +1100 Subject: Updated to 19w09a (#43) * Update MixinContainerScreen.java * 19w09a update --- .../java/me/shedaniel/rei/api/IRecipeDisplay.java | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'src/main/java/me/shedaniel/rei/api/IRecipeDisplay.java') diff --git a/src/main/java/me/shedaniel/rei/api/IRecipeDisplay.java b/src/main/java/me/shedaniel/rei/api/IRecipeDisplay.java index 9d390385c..df68c8486 100644 --- a/src/main/java/me/shedaniel/rei/api/IRecipeDisplay.java +++ b/src/main/java/me/shedaniel/rei/api/IRecipeDisplay.java @@ -10,16 +10,16 @@ import java.util.Optional; public interface IRecipeDisplay { - public abstract Optional getRecipe(); - - public List> getInput(); - - public List getOutput(); - - default public List> getRequiredItems() { + Optional getRecipe(); + + List> getInput(); + + List getOutput(); + + default List> getRequiredItems() { return Lists.newArrayList(); } - - public Identifier getRecipeCategory(); - + + Identifier getRecipeCategory(); + } -- cgit