Skip to content

Commit

Permalink
Fix compilation issue with direct use of UsesType
Browse files Browse the repository at this point in the history
  • Loading branch information
timtebeek committed Nov 5, 2024
1 parent e4dc7cf commit 1ddc755
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 @@ public TreeVisitor<?, ExecutionContext> getScanner(AtomicBoolean acc) {
if (acc.get()) {
return (J) tree;
}
J t = new UsesType<ExecutionContext>("javax.xml.bind..*", true).visit(tree, ctx);
Tree t = new UsesType<ExecutionContext>("javax.xml.bind..*", true).visit(tree, ctx);
if (t != tree) {
acc.set(true);
}
Expand Down

0 comments on commit 1ddc755

Please sign in to comment.