From 08d80d588a36598114087a79917e36e9d2cc97c3 Mon Sep 17 00:00:00 2001 From: shedaniel Date: Tue, 24 Dec 2019 11:31:40 +0800 Subject: Finishing workstation usage and close #220 --- src/main/java/me/shedaniel/rei/api/RecipeDisplay.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/main/java/me/shedaniel/rei/api/RecipeDisplay.java') diff --git a/src/main/java/me/shedaniel/rei/api/RecipeDisplay.java b/src/main/java/me/shedaniel/rei/api/RecipeDisplay.java index 328d28973..139132a73 100644 --- a/src/main/java/me/shedaniel/rei/api/RecipeDisplay.java +++ b/src/main/java/me/shedaniel/rei/api/RecipeDisplay.java @@ -12,17 +12,17 @@ import java.util.List; import java.util.Optional; public interface RecipeDisplay { - + /** * @return a list of inputs */ List> getInputEntries(); - + /** * @return a list of outputs */ List getOutputEntries(); - + /** * Gets the required items used in craftable filters * @@ -31,14 +31,14 @@ public interface RecipeDisplay { default List> getRequiredEntries() { return Collections.emptyList(); } - + /** * Gets the recipe display category identifier * * @return the identifier of the category */ Identifier getRecipeCategory(); - + /** * Gets the recipe location from datapack * @@ -47,5 +47,5 @@ public interface RecipeDisplay { default Optional getRecipeLocation() { return Optional.empty(); } - + } -- cgit