Skip to content

Commit

Permalink
Fixed styling.
Browse files Browse the repository at this point in the history
  • Loading branch information
And1sS committed Jan 9, 2025
1 parent 4ca36ba commit 9e492ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/prebid/server/auction/ImpAdjuster.java
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ private void setEaParams(ObjectNode ext) {
.map(JsonNode::asInt)
.orElse(-1);

boolean extIgsEaPresent = Optional.ofNullable(ext)
final boolean extIgsEaPresent = Optional.ofNullable(ext)
.map(extNode -> extNode.get(EXT_IGS))
.filter(JsonNode::isArray)
.map(extNode -> StreamSupport.stream(extNode.spliterator(), false).toList())
Expand Down

0 comments on commit 9e492ba

Please sign in to comment.