From 5e2eccadbd91171c01cdb209d1338bcfb7786b1c Mon Sep 17 00:00:00 2001 From: shedaniel Date: Thu, 2 Jan 2020 14:31:16 +0800 Subject: 3.3 Fix #58 Close #134 Close #158 Fix #227 --- .../java/me/shedaniel/rei/api/plugins/REIPluginV0.java | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'src/main/java/me/shedaniel/rei/api/plugins/REIPluginV0.java') diff --git a/src/main/java/me/shedaniel/rei/api/plugins/REIPluginV0.java b/src/main/java/me/shedaniel/rei/api/plugins/REIPluginV0.java index 858c57ca8..708bab589 100644 --- a/src/main/java/me/shedaniel/rei/api/plugins/REIPluginV0.java +++ b/src/main/java/me/shedaniel/rei/api/plugins/REIPluginV0.java @@ -11,7 +11,7 @@ import me.shedaniel.rei.api.REIPluginEntry; import me.shedaniel.rei.api.RecipeHelper; public interface REIPluginV0 extends REIPluginEntry { - + /** * Registers entries on the item panel * @@ -19,7 +19,7 @@ public interface REIPluginV0 extends REIPluginEntry { */ default void registerEntries(EntryRegistry entryRegistry) { } - + /** * Registers categories * @@ -27,7 +27,7 @@ public interface REIPluginV0 extends REIPluginEntry { */ default void registerPluginCategories(RecipeHelper recipeHelper) { } - + /** * Registers displays for categories * @@ -35,7 +35,7 @@ public interface REIPluginV0 extends REIPluginEntry { */ default void registerRecipeDisplays(RecipeHelper recipeHelper) { } - + /** * Registers bounds handlers * @@ -43,7 +43,7 @@ public interface REIPluginV0 extends REIPluginEntry { */ default void registerBounds(DisplayHelper displayHelper) { } - + /** * Register other stuff * @@ -51,11 +51,11 @@ public interface REIPluginV0 extends REIPluginEntry { */ default void registerOthers(RecipeHelper recipeHelper) { } - + default void preRegister() { } - + default void postRegister() { } - + } -- cgit