mirror of
https://github.com/BlueMap-Minecraft/BlueMap.git
synced 2024-11-25 20:16:00 +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) {
|
private static Stream<Path> walk(Path root) {
|
||||||
|
if (!Files.exists(root)) return Stream.empty();
|
||||||
|
if (Files.isRegularFile(root)) return Stream.of(root);
|
||||||
try {
|
try {
|
||||||
return Files.walk(root);
|
return Files.walk(root);
|
||||||
} catch (IOException ex) {
|
} catch (IOException ex) {
|
||||||
|
Loading…
Reference in New Issue
Block a user