Merge pull request #3079 from SRLJustin/config_class

ConfigManager: backwards compatible for some plugins
This commit is contained in:
ThatGamerBlue
2021-12-02 02:26:44 +00:00
committed by GitHub

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;