We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e045b3 commit e8a9890Copy full SHA for e8a9890
core/src/main/java/de/bluecolored/bluemap/core/util/FileTreeIterator.java
@@ -76,8 +76,10 @@ private void fetchNextIfNeeded() {
76
while (ev != null) {
77
IOException ioe = ev.ioeException();
78
if (ioe != null) {
79
- if (ioe instanceof NoSuchFileException)
80
- continue; // ignore NoSuchFileExceptions, and just continue iterating
+ if (ioe instanceof NoSuchFileException) {
+ ev = walker.next(); // ignore NoSuchFileExceptions, and just continue iterating
81
+ continue;
82
+ }
83
throw new UncheckedIOException(ioe);
84
}
85
0 commit comments