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/LiveRecipeGenerator.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/main/java/me/shedaniel/rei/api/LiveRecipeGenerator.java') diff --git a/src/main/java/me/shedaniel/rei/api/LiveRecipeGenerator.java b/src/main/java/me/shedaniel/rei/api/LiveRecipeGenerator.java index 588010042..8d7886273 100644 --- a/src/main/java/me/shedaniel/rei/api/LiveRecipeGenerator.java +++ b/src/main/java/me/shedaniel/rei/api/LiveRecipeGenerator.java @@ -11,15 +11,15 @@ import java.util.List; import java.util.Optional; public interface LiveRecipeGenerator { - + Identifier getCategoryIdentifier(); - + default Optional> getRecipeFor(EntryStack entry) { return Optional.empty(); } - + default Optional> getUsageFor(EntryStack entry) { return Optional.empty(); } - + } -- cgit