aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/me/shedaniel/rei/utils/ClothScreenRegistry.java
diff options
context:
space:
mode:
authorUnknown <shekwancheung0528@gmail.com>2019-04-18 22:00:45 +0800
committerUnknown <shekwancheung0528@gmail.com>2019-04-18 22:00:45 +0800
commita9a476f81d1547d8a14aa2e566487fcaead0954a (patch)
treeceb7a80517e35e513c88634a6a305f16cd13510b /src/main/java/me/shedaniel/rei/utils/ClothScreenRegistry.java
parentc684a013be87b57ab7d690b4b33e0454a6379b92 (diff)
downloadRoughlyEnoughItems-a9a476f81d1547d8a14aa2e566487fcaead0954a.tar.gz
RoughlyEnoughItems-a9a476f81d1547d8a14aa2e566487fcaead0954a.tar.bz2
RoughlyEnoughItems-a9a476f81d1547d8a14aa2e566487fcaead0954a.zip
Wrap around plz (2.7.9.94)
Fix #66
Diffstat (limited to 'src/main/java/me/shedaniel/rei/utils/ClothScreenRegistry.java')
-rw-r--r--src/main/java/me/shedaniel/rei/utils/ClothScreenRegistry.java10
1 files changed, 0 insertions, 10 deletions
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<String, List<Pair<String, Object>>> map) {
- super(map);
- }
- }
-
}