return value;
}
protected List<?> loadYamlData(final Reader io) throws IOException {
final Yaml yaml = new Yaml(new Constructor(), new Representer(),
new DumperOptions(), new YamlParserResolver());
final Object loadedYaml = yaml.load(io);
if (loadedYaml instanceof ArrayList) {
return (ArrayList<?>) loadedYaml;