Skip to content

Commit dd8d341

Browse files
committed
Fix compilation after addition of argument
1 parent 58357dd commit dd8d341

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/openrewrite/java/spring/cloud2022/MigrateRequestMappingOnFeignClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ private J.ClassDeclaration addAttributeToFeignClient(J.ClassDeclaration cd, Exec
9797
return cd.withLeadingAnnotations(
9898
ListUtils.map(cd.getLeadingAnnotations(), a -> (J.Annotation)
9999
new AddOrUpdateAnnotationAttribute(FEIGN_CLIENT, "path",
100-
path, true, false).getVisitor()
100+
path, null, true, false).getVisitor()
101101
.visit(a, ctx, getCursor().getParentOrThrow())));
102102
}
103103

0 commit comments

Comments
 (0)