Skip to content

Commit ca67d5c

Browse files
fix comments
1 parent d370c91 commit ca67d5c

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/main/java/org/prebid/server/bidder/clydo/ClydoBidder.java

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -116,13 +116,10 @@ private static String resolveUrl(String endpoint, ExtImpClydo extImp) {
116116

117117
private static String getRegionInfo(ExtImpClydo extImp) {
118118
final String region = extImp.getRegion();
119-
if (region == null) {
120-
return DEFAULT_REGION;
121-
}
122119

123120
return switch (region) {
124121
case "us", "usw", "eu", "apac" -> region;
125-
default -> DEFAULT_REGION;
122+
case null, default -> DEFAULT_REGION;
126123
};
127124
}
128125

0 commit comments

Comments
 (0)