aboutsummaryrefslogtreecommitdiff
path: root/RoughlyEnoughItems-api/src/main/java/me/shedaniel/rei/api/ConfigObject.java
diff options
context:
space:
mode:
authorshedaniel <daniel@shedaniel.me>2020-12-11 20:24:47 +0800
committershedaniel <daniel@shedaniel.me>2020-12-11 20:24:47 +0800
commit90b8a8181eb7e642fb88832f8bd8baa3acdcf804 (patch)
tree85774b5a26be6a8303f99c5316aee320a737ffc8 /RoughlyEnoughItems-api/src/main/java/me/shedaniel/rei/api/ConfigObject.java
parent14edd7e3f9e3716ff60e9d918760049c1313a485 (diff)
downloadRoughlyEnoughItems-90b8a8181eb7e642fb88832f8bd8baa3acdcf804.tar.gz
RoughlyEnoughItems-90b8a8181eb7e642fb88832f8bd8baa3acdcf804.tar.bz2
RoughlyEnoughItems-90b8a8181eb7e642fb88832f8bd8baa3acdcf804.zip
Remove deprecated classes
Signed-off-by: shedaniel <daniel@shedaniel.me>
Diffstat (limited to 'RoughlyEnoughItems-api/src/main/java/me/shedaniel/rei/api/ConfigObject.java')
-rw-r--r--RoughlyEnoughItems-api/src/main/java/me/shedaniel/rei/api/ConfigObject.java31
1 files changed, 0 insertions, 31 deletions
diff --git a/RoughlyEnoughItems-api/src/main/java/me/shedaniel/rei/api/ConfigObject.java b/RoughlyEnoughItems-api/src/main/java/me/shedaniel/rei/api/ConfigObject.java
index 8bce78e5b..d193b1bc4 100644
--- a/RoughlyEnoughItems-api/src/main/java/me/shedaniel/rei/api/ConfigObject.java
+++ b/RoughlyEnoughItems-api/src/main/java/me/shedaniel/rei/api/ConfigObject.java
@@ -30,7 +30,6 @@ import net.fabricmc.api.EnvType;
import net.fabricmc.api.Environment;
import org.jetbrains.annotations.ApiStatus;
-import java.util.Collections;
import java.util.List;
@Environment(EnvType.CLIENT)
@@ -63,10 +62,6 @@ public interface ConfigObject {
boolean isToastDisplayedOnCopyIdentifier();
- @Deprecated
- @ApiStatus.ScheduledForRemoval
- boolean doesRenderEntryEnchantmentGlint();
-
boolean isEntryListWidgetScrolled();
boolean shouldAppendModNames();
@@ -75,10 +70,6 @@ public interface ConfigObject {
void setRecipeScreenType(RecipeScreenType recipeScreenType);
- @Deprecated
- @ApiStatus.ScheduledForRemoval
- boolean isLoadingDefaultPlugin();
-
SearchFieldLocation getSearchFieldLocation();
default boolean isLeftHandSidePanel() {
@@ -117,22 +108,10 @@ public interface ConfigObject {
boolean doDisplayFavoritesTooltip();
- @Deprecated
- @ApiStatus.ScheduledForRemoval
- default boolean doDisplayFavoritesOnTheLeft() {
- return true;
- }
-
boolean doesFastEntryRendering();
boolean doDebugRenderTimeRequired();
- @Deprecated
- @ApiStatus.ScheduledForRemoval
- default boolean doSearchFavorites() {
- return false;
- }
-
ModifierKeyCode getFavoriteKeyCode();
ModifierKeyCode getRecipeKeybind();
@@ -157,12 +136,6 @@ public interface ConfigObject {
boolean isLowerConfigButton();
- @Deprecated
- @ApiStatus.ScheduledForRemoval
- default List<EntryStack> getFavorites() {
- return Collections.emptyList();
- }
-
@ApiStatus.Experimental
List<FavoriteEntry> getFavoriteEntries();
@@ -181,10 +154,6 @@ public interface ConfigObject {
boolean isInventoryHighlightingAllowed();
- @Deprecated
- @ApiStatus.ScheduledForRemoval
- boolean shouldResizeDynamically();
-
@ApiStatus.Experimental
double getHorizontalEntriesBoundaries();