diff --git a/src/main/java/ru/betterend/config/IdConfig.java b/src/main/java/ru/betterend/config/IdConfig.java index 5dfb6c58..7fdeef53 100644 --- a/src/main/java/ru/betterend/config/IdConfig.java +++ b/src/main/java/ru/betterend/config/IdConfig.java @@ -27,26 +27,6 @@ public class IdConfig extends Config { return this.keyFactory.apply(id, key); } - @Nullable - public IntegerEntry getIntEntry(Identifier id, String key) { - return this.getEntry(createKey(id, key), IntegerEntry.class); - } - - @Nullable - public FloatEntry getFloatEntry(Identifier id, String key) { - return this.getEntry(createKey(id, key), FloatEntry.class); - } - - @Nullable - public BooleanEntry getBoolEntry(Identifier id, String key) { - return this.getEntry(createKey(id, key), BooleanEntry.class); - } - - @Nullable - public StringEntry getStringEntry(Identifier id, String key) { - return this.getEntry(createKey(id, key), StringEntry.class); - } - @Nullable public > E getEntry(Identifier id, String key, Class type) { return this.getEntry(createKey(id, key), type);