Skip to content

Commit

Permalink
Fix compilation after addition of argument
Browse files Browse the repository at this point in the history
  • Loading branch information
timtebeek committed Jan 15, 2025
1 parent 58357dd commit dd8d341
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ private J.ClassDeclaration addAttributeToFeignClient(J.ClassDeclaration cd, Exec
return cd.withLeadingAnnotations(
ListUtils.map(cd.getLeadingAnnotations(), a -> (J.Annotation)
new AddOrUpdateAnnotationAttribute(FEIGN_CLIENT, "path",
path, true, false).getVisitor()
path, null, true, false).getVisitor()
.visit(a, ctx, getCursor().getParentOrThrow())));
}

Expand Down

0 comments on commit dd8d341

Please sign in to comment.