Skip to content

Commit fb80173

Browse files
committed
Fix missed visit() to doVisit() rename in GroovyParserVisitor
1 parent fb603d1 commit fb80173

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

rewrite-groovy/src/main/java/org/openrewrite/groovy/GroovyParserVisitor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1377,7 +1377,7 @@ public void visitClosureExpression(ClosureExpression expression) {
13771377
paramName = paramName.withElement(paramName.getElement().getPadding()
13781378
.withInitializer(new JLeftPadded<>(
13791379
sourceBefore("="),
1380-
visit(defaultValue),
1380+
doVisit(defaultValue),
13811381
Markers.EMPTY)));
13821382
}
13831383
J expr = new J.VariableDeclarations(randomId(), varDeclPrefix, Markers.EMPTY,

0 commit comments

Comments
 (0)