Add missing getBoolean method

This commit is contained in:
Andre_601 2020-08-28 15:16:03 +02:00 committed by GitHub
parent a996d9039e
commit fe02939466
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions

View File

@ -199,6 +199,12 @@ public abstract class PlaceholderExpansion extends PlaceholderHook {
final ConfigurationSection section = getConfigSection();
return section == null ? Collections.emptyList() : section.getStringList(path);
}
@NotNull
public final boolean getBoolean(@NotNull final String path, final boolean def) {
final ConfigurationSection section = getConfigSection();
return section == null ? def : section.getBoolean(path, def);
}
public final boolean configurationContains(@NotNull final String path) {
final ConfigurationSection section = getConfigSection();