Add empty ConfigSection

This commit is contained in:
filoghost 2020-08-06 00:05:23 +02:00
parent 03a0ab30af
commit dd04a1efbb
2 changed files with 26 additions and 0 deletions

View File

@ -76,6 +76,7 @@ public class ConfigSection {
}
private void setRawValue(String path, Object value) {
Preconditions.checkArgument(!(value instanceof ConfigurationSection), "cannot set ConfigurationSection as value");
yamlSection.set(path, value);
}

View File

@ -0,0 +1,25 @@
/*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package me.filoghost.chestcommands.config.framework;
import org.bukkit.configuration.MemoryConfiguration;
public class EmptyConfigSection extends ConfigSection {
public EmptyConfigSection() {
super(new MemoryConfiguration());
}
}