Skip to content

Commit

Permalink
fix linter
Browse files Browse the repository at this point in the history
  • Loading branch information
sergseven committed Dec 23, 2024
1 parent 5feebf4 commit 4955517
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ private List<BidRequest> makeRequests(
List<BidderError> errors) {
final List<BidRequest> bidRequests = new ArrayList<>();
// single request for all banner and native imps
var bannerAndNativeImps = Stream.of(bannerImps, nativeImps)
final var bannerAndNativeImps = Stream.of(bannerImps, nativeImps)
.filter(Objects::nonNull)
.flatMap(Collection::stream)
.toList();
Expand Down

0 comments on commit 4955517

Please sign in to comment.