mirror of
https://github.com/BlueMap-Minecraft/BlueMap.git
synced 2024-11-13 22:25:57 +01:00
Fix resource-parsing issue
This commit is contained in:
parent
f4c6adc685
commit
cfa76e6451
@ -419,6 +419,8 @@ private static Stream<Path> list(Path root) {
|
||||
}
|
||||
|
||||
private static Stream<Path> walk(Path root) {
|
||||
if (!Files.exists(root)) return Stream.empty();
|
||||
if (Files.isRegularFile(root)) return Stream.of(root);
|
||||
try {
|
||||
return Files.walk(root);
|
||||
} catch (IOException ex) {
|
||||
|
Loading…
Reference in New Issue
Block a user