Skip to content

Commit

Permalink
Nullability warning go away
Browse files Browse the repository at this point in the history
  • Loading branch information
sambsnyd committed Dec 16, 2024
1 parent 330acff commit dfc9b02
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ public TreeVisitor<?, ExecutionContext> getVisitor(Accumulator acc) {
final TreeVisitor<?, ExecutionContext> mavenAddDep = mavenAddDep().getVisitor(acc.mavenAccumulator);

@Override
public Tree visit(@Nullable Tree tree, ExecutionContext ctx) {
public Tree visit(@SuppressWarnings("NullableProblems") Tree tree, ExecutionContext ctx) {
if (!(tree instanceof SourceFile)) {
return tree;
}
Expand Down

0 comments on commit dfc9b02

Please sign in to comment.