Skip to content

Commit 98225e3

Browse files
committed
Fix initialization of IndexingRescanner.Generator
1 parent 5893890 commit 98225e3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/engineering/swat/watch/impl/overflows/IndexingRescanner.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ protected class Generator extends MemorylessRescanner.Generator {
9393

9494
public Generator(Path path, WatchScope scope) {
9595
super(path, scope);
96-
visited.push(new HashSet<>()); // Initial set for content of `path`
96+
this.visited.push(new HashSet<>()); // Initial set for content of `path`
9797
}
9898

9999
private <T> void addToPeeked(Deque<Set<T>> deque, T t) {

0 commit comments

Comments
 (0)