Fix typo in FileTruststoreProviderFactory.java
This commit is contained in:
parent
4fd1950f5c
commit
59ef7d258f
1 changed files with 1 additions and 1 deletions
|
@ -95,7 +95,7 @@ public class FileTruststoreProviderFactory implements TruststoreProviderFactory
|
||||||
TruststoreCertificatesLoader certsLoader = new TruststoreCertificatesLoader(truststore);
|
TruststoreCertificatesLoader certsLoader = new TruststoreCertificatesLoader(truststore);
|
||||||
provider = new FileTruststoreProvider(truststore, verificationPolicy, certsLoader.trustedRootCerts, certsLoader.intermediateCerts);
|
provider = new FileTruststoreProvider(truststore, verificationPolicy, certsLoader.trustedRootCerts, certsLoader.intermediateCerts);
|
||||||
TruststoreProviderSingleton.set(provider);
|
TruststoreProviderSingleton.set(provider);
|
||||||
log.debug("File trustore provider initialized: " + new File(storepath).getAbsolutePath());
|
log.debug("File truststore provider initialized: " + new File(storepath).getAbsolutePath());
|
||||||
}
|
}
|
||||||
|
|
||||||
private KeyStore loadStore(String path, char[] password) throws Exception {
|
private KeyStore loadStore(String path, char[] password) throws Exception {
|
||||||
|
|
Loading…
Reference in a new issue