diff options
Diffstat (limited to 'src/main/java/me/shedaniel/rei/api/RecipeHelper.java')
| -rw-r--r-- | src/main/java/me/shedaniel/rei/api/RecipeHelper.java | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/main/java/me/shedaniel/rei/api/RecipeHelper.java b/src/main/java/me/shedaniel/rei/api/RecipeHelper.java index b46280a63..70682dad8 100644 --- a/src/main/java/me/shedaniel/rei/api/RecipeHelper.java +++ b/src/main/java/me/shedaniel/rei/api/RecipeHelper.java @@ -134,10 +134,11 @@ public interface RecipeHelper { * @param display the recipe display * @deprecated Use {@link RecipeHelper#registerDisplay(RecipeDisplay)} */ - @ApiStatus.Internal @ApiStatus.ScheduledForRemoval @Deprecated - void registerDisplay(Identifier categoryIdentifier, RecipeDisplay display); + default void registerDisplay(Identifier categoryIdentifier, RecipeDisplay display) { + registerDisplay(display); + } Map<RecipeCategory<?>, List<RecipeDisplay>> buildMapFor(ClientHelper.ViewSearchBuilder builder); |
