From a9a476f81d1547d8a14aa2e566487fcaead0954a Mon Sep 17 00:00:00 2001 From: Unknown Date: Thu, 18 Apr 2019 22:00:45 +0800 Subject: Wrap around plz (2.7.9.94) Fix #66 --- src/main/java/me/shedaniel/rei/utils/ClothScreenRegistry.java | 10 ---------- 1 file changed, 10 deletions(-) (limited to 'src/main/java/me/shedaniel/rei/utils/ClothScreenRegistry.java') diff --git a/src/main/java/me/shedaniel/rei/utils/ClothScreenRegistry.java b/src/main/java/me/shedaniel/rei/utils/ClothScreenRegistry.java index f72ca31b0..1fbbb021a 100644 --- a/src/main/java/me/shedaniel/rei/utils/ClothScreenRegistry.java +++ b/src/main/java/me/shedaniel/rei/utils/ClothScreenRegistry.java @@ -1,7 +1,6 @@ package me.shedaniel.rei.utils; import me.shedaniel.cloth.api.ConfigScreenBuilder; -import me.shedaniel.cloth.gui.ClothConfigScreen; import me.shedaniel.cloth.gui.entries.BooleanListEntry; import me.shedaniel.cloth.gui.entries.EnumListEntry; import me.shedaniel.cloth.gui.entries.IntegerSliderEntry; @@ -15,11 +14,8 @@ import net.minecraft.client.MinecraftClient; import net.minecraft.client.gui.Screen; import net.minecraft.client.gui.widget.ButtonWidget; import net.minecraft.client.resource.language.I18n; -import net.minecraft.util.Pair; import java.io.IOException; -import java.util.List; -import java.util.Map; public class ClothScreenRegistry { @@ -69,10 +65,4 @@ public class ClothScreenRegistry { })); } - private static class SelfSavedConfig extends ClothConfigScreen.Builder.SavedConfig { - protected SelfSavedConfig(Map>> map) { - super(map); - } - } - } -- cgit