diff options
Diffstat (limited to 'src/main/java/me/shedaniel/rei/api/DisplayHelper.java')
| -rw-r--r-- | src/main/java/me/shedaniel/rei/api/DisplayHelper.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main/java/me/shedaniel/rei/api/DisplayHelper.java b/src/main/java/me/shedaniel/rei/api/DisplayHelper.java index 755ca84b3..53d35a3dd 100644 --- a/src/main/java/me/shedaniel/rei/api/DisplayHelper.java +++ b/src/main/java/me/shedaniel/rei/api/DisplayHelper.java @@ -22,14 +22,14 @@ public interface DisplayHelper { * @return the sorted list of responsible bounds handlers * @see DisplayHelper#getResponsibleBoundsHandler(Class) for the unsorted version */ - List<DisplayBoundsHandler> getSortedBoundsHandlers(Class screenClass); + List<DisplayBoundsHandler<?>> getSortedBoundsHandlers(Class<?> screenClass); /** * Gets all registered bounds handlers * * @return the list of registered bounds handlers */ - List<DisplayBoundsHandler> getAllBoundsHandlers(); + List<DisplayBoundsHandler<?>> getAllBoundsHandlers(); /** * Gets all responsible bounds handlers @@ -38,14 +38,14 @@ public interface DisplayHelper { * @return the the list of responsible bounds handlers * @see DisplayHelper#getSortedBoundsHandlers(Class) for the sorted version */ - DisplayBoundsHandler getResponsibleBoundsHandler(Class screenClass); + DisplayBoundsHandler<?> getResponsibleBoundsHandler(Class<?> screenClass); /** * Registers a bounds handler * * @param handler the handler to register */ - void registerBoundsHandler(DisplayBoundsHandler handler); + void registerBoundsHandler(DisplayBoundsHandler<?> handler); /** * Gets the base bounds handler api for exclusion zones |
