Skip to content

Commit

Permalink
Merge pull request #98 from Jenson3210/quick_fix
Browse files Browse the repository at this point in the history
Added default null for scope whitelist of UpgradeTransitiveDependencyVersion for now
  • Loading branch information
Jenson3210 authored Jun 7, 2024
2 parents e024c9f + bf46917 commit 0d40550
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ public Tree visit(@Nullable Tree tree, ExecutionContext ctx) {
if (t == t2) {
if(Boolean.TRUE.equals(overrideTransitive)) {
t2 = new UpgradeTransitiveDependencyVersion(gaToVb.getKey().getGroupId(), gaToVb.getKey().getArtifactId(),
gaToVb.getValue().getVersion(), null, because)
gaToVb.getValue().getVersion(), null, because, null)
.getVisitor()
.visitNonNull(t, ctx);
if (t != t2) {
Expand Down

0 comments on commit 0d40550

Please sign in to comment.