Fixes FS-349

This commit is contained in:
Video 2022-11-04 21:32:23 -06:00 committed by Paul Reilly
parent 9998392b1a
commit 0686419ce3

View File

@ -186,19 +186,6 @@ public enum ConfigEntry
this.configName = configName; this.configName = configName;
} }
public static ConfigEntry findConfigEntry(String name)
{
name = name.toLowerCase().replace("_", "");
for (ConfigEntry entry : values())
{
if (entry.toString().toLowerCase().replace("_", "").equals(name))
{
return entry;
}
}
return null;
}
public Class<?> getType() public Class<?> getType()
{ {
return type; return type;