From a5da8d98938c518783b57a7459376d63a893a543 Mon Sep 17 00:00:00 2001 From: shedaniel Date: Mon, 8 Jun 2020 19:32:54 +0800 Subject: a Signed-off-by: shedaniel --- src/main/java/me/shedaniel/rei/impl/ConfigObjectImpl.java | 9 --------- 1 file changed, 9 deletions(-) (limited to 'src/main/java/me/shedaniel/rei/impl/ConfigObjectImpl.java') diff --git a/src/main/java/me/shedaniel/rei/impl/ConfigObjectImpl.java b/src/main/java/me/shedaniel/rei/impl/ConfigObjectImpl.java index ac6d6f472..824014850 100644 --- a/src/main/java/me/shedaniel/rei/impl/ConfigObjectImpl.java +++ b/src/main/java/me/shedaniel/rei/impl/ConfigObjectImpl.java @@ -32,9 +32,6 @@ import me.shedaniel.clothconfig2.api.ModifierKeyCode; import me.shedaniel.rei.api.ConfigObject; import me.shedaniel.rei.api.EntryStack; import me.shedaniel.rei.gui.config.*; -import me.shedaniel.rei.impl.ConfigObjectImpl.DontApplyFieldName; -import me.shedaniel.rei.impl.ConfigObjectImpl.UseFilteringScreen; -import me.shedaniel.rei.impl.ConfigObjectImpl.UseSpecialRecipeTypeScreen; import net.minecraft.client.util.InputUtil; import org.jetbrains.annotations.ApiStatus; @@ -219,11 +216,6 @@ public class ConfigObjectImpl implements ConfigObject, ConfigData { return isFavoritesEnabled() && appearance.displayFavoritesTooltip; } - @Override - public boolean doDisplayFavoritesOnTheLeft() { - return appearance.displayFavoritesOnTheLeft; - } - @Override public boolean doesFastEntryRendering() { return performance.newFastEntryRendering; @@ -397,7 +389,6 @@ public class ConfigObjectImpl implements ConfigObject, ConfigData { @Comment("Declares how the scrollbar in villager screen should act.") private boolean villagerScreenPermanentScrollBar = false; @Comment("Declares whether entry list widget is scrolled.") private boolean scrollingEntryListWidget = false; @Comment("Declares whether scrolled entry list widget should snap to rows.") private boolean snapToRows = false; - @Comment("Declares the location of the favorites list.") private boolean displayFavoritesOnTheLeft = true; @Comment("Declares whether favorites tooltip should be displayed.") private boolean displayFavoritesTooltip = false; @Comment("Declares whether favorites will be searched.") private boolean searchFavorites = true; @UsePercentage(min = 0.25, max = 4.0) private double entrySize = 1.0; -- cgit