Skip to content

Commit

Permalink
fix line length
Browse files Browse the repository at this point in the history
  • Loading branch information
pro-nsk committed Jul 27, 2023
1 parent 0103985 commit f25f50c
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,9 @@ private Imp updateImp(Imp imp, ExtImpAlkimi extImpAlkimi) {
final Price bidFloorPrice = Price.of(imp.getBidfloorcur(), imp.getBidfloor());

return imp.toBuilder()
.bidfloor(BidderUtil.isValidPrice(bidFloorPrice) ? bidFloorPrice.getValue() : extImpAlkimi.getBidFloor())
.bidfloor(BidderUtil.isValidPrice(bidFloorPrice)
? bidFloorPrice.getValue()
: extImpAlkimi.getBidFloor())
.banner(updatedBanner)
.video(updatedVideo)
.ext(makeImpExt(imp, updatedBanner, updatedVideo, extImpAlkimi))
Expand Down

0 comments on commit f25f50c

Please sign in to comment.