Skip to content

Commit 77010b6

Browse files
committed
Revert check styl issue
1 parent ad13049 commit 77010b6

File tree

5 files changed

+8
-38
lines changed

5 files changed

+8
-38
lines changed

.github/workflows/check-style.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1-
name: reviewdog
1+
name: Check style
2+
23
on: [pull_request]
34

45
jobs:
56
checkstyle:
6-
name: runner / checkstyle
7+
name: Run
78
runs-on: ubuntu-latest
89
steps:
910
- uses: actions/checkout@v5

src/main/java/org/prebid/server/bidder/GenericBidder.java

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,9 @@
1212
import org.prebid.server.bidder.model.Result;
1313
import org.prebid.server.json.DecodeException;
1414
import org.prebid.server.json.JacksonMapper;
15-
import org.prebid.server.json.JsonMerger;
1615
import org.prebid.server.util.BidderUtil;
1716
import org.prebid.server.util.HttpUtil;
1817

19-
import java.util.ArrayList;
20-
import java.util.HashMap;
21-
import java.util.UUID;
2218
import java.util.Collection;
2319
import java.util.Collections;
2420
import java.util.List;
@@ -39,11 +35,6 @@ public GenericBidder(String endpointUrl, JacksonMapper mapper) {
3935

4036
@Override
4137
public final Result<List<HttpRequest<BidRequest>>> makeHttpRequests(BidRequest bidRequest) {
42-
43-
final List<BidderError> errorsWithLOOOOOOOOOOOOOONGESTnaminggggggggggggggggggggggggggggggggggggggggggg = new ArrayList<>();
44-
45-
46-
4738
return Result.withValue(BidderUtil.defaultRequest(bidRequest, endpointUrl, mapper));
4839
}
4940

src/main/java/org/prebid/server/log/CriteriaLogManager.java

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -11,28 +11,6 @@
1111

1212
public class CriteriaLogManager {
1313

14-
15-
16-
17-
18-
19-
20-
21-
22-
23-
24-
25-
26-
27-
28-
29-
30-
31-
32-
33-
34-
35-
3614
private static final Logger logger = LoggerFactory.getLogger(CriteriaLogManager.class);
3715

3816
private final Set<Criteria> criterias = new ConcurrentHashSet<>();

src/test/groovy/org/prebid/server/functional/tests/module/responsecorrenction/ResponseCorrectionSpec.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ import static org.prebid.server.functional.model.response.auction.MediaType.VIDE
3232

3333
class ResponseCorrectionSpec extends ModuleBaseSpec {
3434

35-
private final static int OPTIMAL_MAX_LENGTH = 0
35+
private final static int OPTIMAL_MAX_LENGTH = 20
3636
private static final Map PBS_CONFIG = ["adapter-defaults.modifying-vast-xml-allowed": "false",
3737
"adapters.generic.modifying-vast-xml-allowed": "false"] +
3838
getResponseCorrectionConfig()

src/test/groovy/org/prebid/server/functional/tests/privacy/TcfFullTransmitEidsActivitiesSpec.groovy

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@ class TcfFullTransmitEidsActivitiesSpec extends PrivacyBaseSpec {
3030
def prepareEncodeResponseBodyWithLegIntPurposes = getVendorListContent(false, true, false)
3131
def prepareEncodeResponseBodyWithLegIntAndFlexiblePurposes = getVendorListContent(false, true, true)
3232
def prepareEncodeResponseBodyWithPurposesAndFlexiblePurposes = getVendorListContent(true, false, true)
33-
// privacyPbsContainerWithMultipleGvl.withCopyToContainer(Transferable.of(prepareEncodeResponseBodyWithPurposesOnly), getVendorListPath(PURPOSES_ONLY_GVL_VERSION))
34-
// privacyPbsContainerWithMultipleGvl.withCopyToContainer(Transferable.of(prepareEncodeResponseBodyWithLegIntPurposes), getVendorListPath(LEG_INT_PURPOSES_ONLY_GVL_VERSION))
35-
// privacyPbsContainerWithMultipleGvl.withCopyToContainer(Transferable.of(prepareEncodeResponseBodyWithLegIntAndFlexiblePurposes), getVendorListPath(LEG_INT_AND_FLEXIBLE_PURPOSES_GVL_VERSION))
36-
// privacyPbsContainerWithMultipleGvl.withCopyToContainer(Transferable.of(prepareEncodeResponseBodyWithPurposesAndFlexiblePurposes), getVendorListPath(PURPOSES_AND_LEG_INT_PURPOSES_GVL_VERSION))
33+
privacyPbsContainerWithMultipleGvl.withCopyToContainer(Transferable.of(prepareEncodeResponseBodyWithPurposesOnly), getVendorListPath(PURPOSES_ONLY_GVL_VERSION))
34+
privacyPbsContainerWithMultipleGvl.withCopyToContainer(Transferable.of(prepareEncodeResponseBodyWithLegIntPurposes), getVendorListPath(LEG_INT_PURPOSES_ONLY_GVL_VERSION))
35+
privacyPbsContainerWithMultipleGvl.withCopyToContainer(Transferable.of(prepareEncodeResponseBodyWithLegIntAndFlexiblePurposes), getVendorListPath(LEG_INT_AND_FLEXIBLE_PURPOSES_GVL_VERSION))
36+
privacyPbsContainerWithMultipleGvl.withCopyToContainer(Transferable.of(prepareEncodeResponseBodyWithPurposesAndFlexiblePurposes), getVendorListPath(PURPOSES_AND_LEG_INT_PURPOSES_GVL_VERSION))
3737
privacyPbsContainerWithMultipleGvl.start()
3838
privacyPbsServiceWithMultipleGvl = new PrebidServerService(privacyPbsContainerWithMultipleGvl)
3939
}

0 commit comments

Comments
 (0)