mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-17 23:01:01 +01:00
#702: fromNodeTree is now private, this does not belong to the API
By: Wolf2323 <gabrielpatrikurban@gmail.com>
This commit is contained in:
parent
b911613abe
commit
fc98731c16
1 changed files with 1 additions and 1 deletions
|
@ -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();
|
||||
|
|
Loading…
Reference in a new issue