|
|
@ -73,7 +73,7 @@ public class Yml {
|
|
|
|
|
|
|
|
|
|
|
|
return getPrefixed(prefix).stream()
|
|
|
|
return getPrefixed(prefix).stream()
|
|
|
|
.map(entry -> entry.getValue().toString())
|
|
|
|
.map(entry -> entry.getValue().toString())
|
|
|
|
.collect(Collectors.toList());
|
|
|
|
.toList();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
private List<Map.Entry<String, ?>> getPrefixed(String prefix) {
|
|
|
|
private List<Map.Entry<String, ?>> getPrefixed(String prefix) {
|
|
|
@ -125,6 +125,6 @@ public class Yml {
|
|
|
|
})
|
|
|
|
})
|
|
|
|
.collect(Collectors.toSet()).stream()
|
|
|
|
.collect(Collectors.toSet()).stream()
|
|
|
|
.map(this::getMap)
|
|
|
|
.map(this::getMap)
|
|
|
|
.collect(Collectors.toList());
|
|
|
|
.toList();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|