Skip to content

Commit

Permalink
Add nullable scope argument to DependencyInsight
Browse files Browse the repository at this point in the history
  • Loading branch information
timtebeek committed Sep 21, 2024
1 parent d9711b6 commit f58e665
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public AtomicBoolean getInitialValue(ExecutionContext ctx) {

@Override
public TreeVisitor<?, ExecutionContext> getScanner(AtomicBoolean usingOlderMockito) {
TreeVisitor<?, ExecutionContext> div = new DependencyInsight("org.mockito", "mockito-*", "[1.1,2.17)").getVisitor();
TreeVisitor<?, ExecutionContext> div = new DependencyInsight("org.mockito", "mockito-*", "[1.1,2.17)", null).getVisitor();
return new TreeVisitor<Tree, ExecutionContext>() {
@Override
public @Nullable Tree visit(@Nullable Tree tree, ExecutionContext ctx) {
Expand Down

0 comments on commit f58e665

Please sign in to comment.