Skip to content

Commit

Permalink
Fix comments
Browse files Browse the repository at this point in the history
  • Loading branch information
AntoxaAntoxic committed Feb 19, 2024
1 parent 09d89be commit 643c0da
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/main/java/org/prebid/server/auction/DsaEnforcer.java
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,10 @@ public AuctionParticipation enforce(BidRequest bidRequest,
}
}

if (bidderBids.size() == updatedBidderBids.size() && seatBid.getWarnings().size() == warnings.size()) {
if (bidderBids.size() == updatedBidderBids.size()) {
return auctionParticipation;
}

rejectionTracker.restoreFromRejection(updatedBidderBids);
final BidderSeatBid bidderSeatBid = seatBid.toBuilder()
.bids(updatedBidderBids)
.warnings(warnings)
Expand Down

0 comments on commit 643c0da

Please sign in to comment.