aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/me/shedaniel/rei/api/DisplayVisibilityHandler.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/me/shedaniel/rei/api/DisplayVisibilityHandler.java')
-rw-r--r--src/main/java/me/shedaniel/rei/api/DisplayVisibilityHandler.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main/java/me/shedaniel/rei/api/DisplayVisibilityHandler.java b/src/main/java/me/shedaniel/rei/api/DisplayVisibilityHandler.java
index 5e6cde696..388929cda 100644
--- a/src/main/java/me/shedaniel/rei/api/DisplayVisibilityHandler.java
+++ b/src/main/java/me/shedaniel/rei/api/DisplayVisibilityHandler.java
@@ -8,7 +8,7 @@ package me.shedaniel.rei.api;
import net.minecraft.util.ActionResult;
public interface DisplayVisibilityHandler {
-
+
/**
* Gets the priority of the handler
*
@@ -17,7 +17,7 @@ public interface DisplayVisibilityHandler {
default float getPriority() {
return 0f;
}
-
+
/**
* Handles the visibility of the display.
* {@link ActionResult#PASS} to pass the handling to another handler
@@ -29,5 +29,5 @@ public interface DisplayVisibilityHandler {
* @return the visibility
*/
ActionResult handleDisplay(RecipeCategory<?> category, RecipeDisplay display);
-
+
}