Skip to content

Commit

Permalink
refactor: Add a blank line around fields with annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
jkschneider and TeamModerne committed Jun 12, 2024
1 parent e4d730e commit a95547f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,7 @@ public TreeVisitor<?, ExecutionContext> getVisitor(Accumulator acc) {
@Data
static class Accumulator {
@Nullable Yaml.Documents bootstrapYaml;

@Nullable Yaml.Documents applicationYaml;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ public class CustomizingJooqDefaultConfiguration extends Recipe {
"org.jooq.VisitListenerProvider",
"org.jooq.TransactionListenerProvider"
);

@SuppressWarnings("unchecked")
private static final TreeVisitor<?, ExecutionContext> precondition =
Preconditions.or(jooqTypes.stream().map(t -> new UsesType<>(t, false)).toArray(UsesType[]::new));
Expand Down

0 comments on commit a95547f

Please sign in to comment.