Skip to content
This repository has been archived by the owner on Sep 15, 2023. It is now read-only.

Commit

Permalink
Merge pull request #43 from admin-ch/renovate/core-sdk
Browse files Browse the repository at this point in the history
  • Loading branch information
gstoehld authored Feb 22, 2023
2 parents cf23671 + fd35c3f commit b18f208
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
<dependency>
<groupId>ch.admin.bag.covidcertificate</groupId>
<artifactId>sdk-core</artifactId>
<version>3.2.1</version>
<version>3.3.0</version>
</dependency>

<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,12 @@ public long getValidDuration(){
return revokedCertificates.getValidDuration();
}

@NotNull
@Override
public String getPrepopulatedSinceHeader(boolean b) {
return "";
}

public static class RevokedCertificates {
private List<String> revokedCerts;
private long validDuration;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@ object TestData {
override fun containsCertificate(certificate: String): Boolean {
return certs.contains(certificate)
}

override fun getPrepopulatedSinceHeader(isProd: Boolean): String {
return ""
}
},

ruleSet ?: RuleSet(
Expand Down

0 comments on commit b18f208

Please sign in to comment.