#702: fromNodeTree is now private, this does not belong to the API

By: Wolf2323 <gabrielpatrikurban@gmail.com>
This commit is contained in:
Bukkit/Spigot 2021-12-29 07:52:44 +11:00
parent b911613abe
commit fc98731c16

View File

@ -140,7 +140,7 @@ public class YamlConfiguration extends FileConfiguration {
}
}
protected void fromNodeTree(@NotNull MappingNode input, @NotNull ConfigurationSection section) {
private void fromNodeTree(@NotNull MappingNode input, @NotNull ConfigurationSection section) {
for (NodeTuple nodeTuple : input.getValue()) {
ScalarNode key = (ScalarNode) nodeTuple.getKeyNode();
String keyString = key.getValue();