Skip to content

Commit

Permalink
Renamed variable
Browse files Browse the repository at this point in the history
  • Loading branch information
Roberto-Gentili committed Oct 27, 2023
1 parent 80c2a67 commit 5d9f1e7
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -231,9 +231,9 @@ public <T> Collection<T> merge(
).orElseGet(() ->
defaultCollectionSupplier.get()
);
Collection<T> additionalClassPaths = additionalCollectionSupplier.get();
if (additionalClassPaths != null) {
mergedCollection.addAll(additionalClassPaths);
Collection<T> additionalCollection = additionalCollectionSupplier.get();
if (additionalCollection != null) {
mergedCollection.addAll(additionalCollection);
}
return mergedCollection;
}
Expand Down

0 comments on commit 5d9f1e7

Please sign in to comment.