aboutsummaryrefslogtreecommitdiff
path: root/RoughlyEnoughItems-api/src/main/java/me/shedaniel/rei/api/EntryRegistry.java
diff options
context:
space:
mode:
Diffstat (limited to 'RoughlyEnoughItems-api/src/main/java/me/shedaniel/rei/api/EntryRegistry.java')
-rw-r--r--RoughlyEnoughItems-api/src/main/java/me/shedaniel/rei/api/EntryRegistry.java33
1 files changed, 0 insertions, 33 deletions
diff --git a/RoughlyEnoughItems-api/src/main/java/me/shedaniel/rei/api/EntryRegistry.java b/RoughlyEnoughItems-api/src/main/java/me/shedaniel/rei/api/EntryRegistry.java
index 7d32ccf40..369862794 100644
--- a/RoughlyEnoughItems-api/src/main/java/me/shedaniel/rei/api/EntryRegistry.java
+++ b/RoughlyEnoughItems-api/src/main/java/me/shedaniel/rei/api/EntryRegistry.java
@@ -36,7 +36,6 @@ import java.util.Arrays;
import java.util.Collection;
import java.util.List;
import java.util.function.Predicate;
-import java.util.stream.Collectors;
import java.util.stream.Stream;
@Environment(EnvType.CLIENT)
@@ -50,18 +49,6 @@ public interface EntryRegistry {
return Internals.getEntryRegistry();
}
- /**
- * Gets the current modifiable stacks list
- *
- * @return a stacks list
- */
- @Deprecated
- @ApiStatus.ScheduledForRemoval
- @NotNull
- default List<EntryStack> getStacksList() {
- return getEntryStacks().collect(Collectors.toList());
- }
-
@NotNull
Stream<EntryStack> getEntryStacks();
@@ -96,26 +83,6 @@ public interface EntryRegistry {
void registerEntryAfter(@Nullable EntryStack afterEntry, @NotNull EntryStack stack);
/**
- * Registers an new stack to the entry list
- *
- * @param afterEntry the stack to put after
- * @param stack the stack to register
- * @param checkAlreadyContains whether the list should check if it is already on the list
- * @see #queueRegisterEntryAfter(EntryStack, Collection) for a faster method
- */
- @Deprecated
- @ApiStatus.ScheduledForRemoval
- default void registerEntryAfter(@Nullable EntryStack afterEntry, @NotNull EntryStack stack, boolean checkAlreadyContains) {
- registerEntryAfter(afterEntry, stack);
- }
-
- @Deprecated
- @ApiStatus.ScheduledForRemoval
- default void queueRegisterEntryAfter(@Nullable EntryStack afterEntry, @NotNull Collection<@NotNull ? extends EntryStack> stacks) {
- registerEntriesAfter(afterEntry, stacks);
- }
-
- /**
* Registers multiple stacks to the item list
*
* @param afterStack the stack to put after