Update SnakeYAML - see if this helps marker issue

This commit is contained in:
Mike Primm 2019-01-27 14:16:12 -06:00
parent 08226b8602
commit 731b40f680
2 changed files with 2 additions and 1 deletions

View file

@ -45,6 +45,7 @@ public class ConfigurationNode implements Map<String, Object> {
options.setIndent(4);
options.setDefaultFlowStyle(DumperOptions.FlowStyle.BLOCK);
options.setPrettyFlow(true);
options.setVersion(DumperOptions.Version.V1_1);
yaml = new Yaml(new SafeConstructor(), new EmptyNullRepresenter(), options);
}