From e65df9fbefb8b7dee7d822239303916b7d6f31fa Mon Sep 17 00:00:00 2001 From: Aleksey Date: Sat, 12 Dec 2020 23:06:29 +0300 Subject: [PATCH] Update IdConfig.java --- .../java/ru/betterend/config/IdConfig.java | 20 ------------------- 1 file changed, 20 deletions(-) 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);