Skip to content

Commit

Permalink
Pass third argument into CommentOutProperty for yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
timtebeek authored Dec 5, 2024
1 parent a6c6033 commit 6738e13
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public String getDescription() {
@Override
public TreeVisitor<?, ExecutionContext> getVisitor() {
Recipe changeProperties = new org.openrewrite.properties.AddPropertyComment(propertyKey, comment, true);
Recipe changeYaml = new org.openrewrite.yaml.CommentOutProperty(propertyKey, comment) ;
Recipe changeYaml = new org.openrewrite.yaml.CommentOutProperty(propertyKey, comment, true);
return new TreeVisitor<Tree, ExecutionContext>() {
@Override
public @Nullable Tree preVisit(@NonNull Tree tree, ExecutionContext ctx) {
Expand Down

0 comments on commit 6738e13

Please sign in to comment.