Skip to content
This repository was archived by the owner on Jan 26, 2026. It is now read-only.

Commit e7b3d83

Browse files
committed
Fix compilation issue after Find gained a new argument
1 parent 26bc313 commit e7b3d83

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/org/openrewrite/docker/search/FindDockerImageUses.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ private static class ReferenceFindSearchResultVisitor extends TreeVisitor<Tree,
8181
if (references != null) {
8282
if (tree instanceof PlainText) {
8383
String find = references.stream().map(Reference::getValue).sorted().collect(joining("|"));
84-
return new Find(find, true, null, null, null, null, true)
84+
return new Find(find, true, null, null, null, null, true, null)
8585
.getVisitor()
8686
.visitNonNull(tree, ctx);
8787
}

0 commit comments

Comments
 (0)