aboutsummaryrefslogtreecommitdiff
path: root/RoughlyEnoughItems-api/src/main/java/me/shedaniel/rei/api/REIHelper.java
diff options
context:
space:
mode:
Diffstat (limited to 'RoughlyEnoughItems-api/src/main/java/me/shedaniel/rei/api/REIHelper.java')
-rw-r--r--RoughlyEnoughItems-api/src/main/java/me/shedaniel/rei/api/REIHelper.java14
1 files changed, 0 insertions, 14 deletions
diff --git a/RoughlyEnoughItems-api/src/main/java/me/shedaniel/rei/api/REIHelper.java b/RoughlyEnoughItems-api/src/main/java/me/shedaniel/rei/api/REIHelper.java
index 787c83e19..c4bc5b429 100644
--- a/RoughlyEnoughItems-api/src/main/java/me/shedaniel/rei/api/REIHelper.java
+++ b/RoughlyEnoughItems-api/src/main/java/me/shedaniel/rei/api/REIHelper.java
@@ -30,12 +30,10 @@ import net.fabricmc.api.EnvType;
import net.fabricmc.api.Environment;
import net.minecraft.client.gui.screens.inventory.AbstractContainerScreen;
import net.minecraft.resources.ResourceLocation;
-import net.minecraft.world.item.ItemStack;
import org.jetbrains.annotations.ApiStatus;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
-import java.util.List;
import java.util.Optional;
@Environment(EnvType.CLIENT)
@@ -54,23 +52,11 @@ public interface REIHelper {
@Nullable
AbstractContainerScreen<?> getPreviousContainerScreen();
- @Nullable
- @Deprecated
- default AbstractContainerScreen<?> getPreviousHandledScreen() {
- return getPreviousContainerScreen();
- }
-
boolean isDarkThemeEnabled();
@Nullable
TextFieldWidget getSearchTextField();
- @NotNull
- @ApiStatus.Internal
- @Deprecated
- @ApiStatus.ScheduledForRemoval
- List<ItemStack> getInventoryStacks();
-
void queueTooltip(@Nullable Tooltip tooltip);
@NotNull