ConfigManager: backwards compatible for some plugins

This commit is contained in:
Justin
2021-12-02 13:24:06 +11:00
parent e1b35f7162
commit 551a056152

View File

@@ -423,6 +423,11 @@ public class ConfigManager
return getConfiguration(groupName, null, key, clazz);
}
public <T> T getConfiguration(String groupName, String key, Class<T> clazz)
{
return getConfiguration(groupName, null, key, clazz);
}
public <T> T getRSProfileConfiguration(String groupName, String key, Type clazz)
{
String rsProfileKey = this.rsProfileKey;