Skip to content

Commit

Permalink
Fix comments
Browse files Browse the repository at this point in the history
  • Loading branch information
AntoxaAntoxic committed Oct 27, 2023
1 parent fc67245 commit 5f2fe75
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ private PgamSspImpExt parseImpExt(Imp imp) throws PreBidException {
private BidRequest makeRequest(BidRequest request, Imp imp, PgamSspImpExt impExt) {
final boolean hasPlacement = StringUtils.isNotBlank(impExt.getPlacementId());
final boolean hasEndpoint = !hasPlacement && StringUtils.isNotBlank(impExt.getEndpointId());
final PgamSspImpExt modifiedImpExt = impExt.toBuilder()
final PgamSspImpExt modifiedImpExt = PgamSspImpExt.builder()
.placementId(hasPlacement ? impExt.getPlacementId() : null)
.endpointId(hasEndpoint ? impExt.getEndpointId() : null)
.type(hasPlacement ? PUBLISHER_IMP_EXT_TYPE : hasEndpoint ? NETWORK_IMP_EXT_TYPE : null)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import lombok.Value;

@Value
@Builder(toBuilder = true)
@Builder
public class PgamSspImpExt {

String type;
Expand Down

0 comments on commit 5f2fe75

Please sign in to comment.