Skip to content

Commit

Permalink
refactor: migrate usages of the Provider class
Browse files Browse the repository at this point in the history
The constructor we are using was deprecated in Java 9
  • Loading branch information
yeikel committed Feb 7, 2024
1 parent 7d13606 commit 48daae7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class TrustManagerFactoryWrapper extends TrustManagerFactory {

private static final Logger LOGGER = LoggerFactory.getLogger(TrustManagerFactoryWrapper.class);
private static final String KEY_MANAGER_FACTORY_ALGORITHM = "no-algorithm";
private static final Provider PROVIDER = new Provider("", 1.0, "") {
private static final Provider PROVIDER = new Provider("", "1.0", "") {
};

TrustManagerFactoryWrapper(TrustManager trustManager) {
Expand Down

0 comments on commit 48daae7

Please sign in to comment.