Skip to content

Commit

Permalink
Make public
Browse files Browse the repository at this point in the history
  • Loading branch information
Eric Alvarez committed Nov 7, 2023
1 parent 383385c commit 33f6302
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
import java.util.regex.Pattern;
import java.util.stream.Collectors;

final class KeyStores {
public final class KeyStores {

private static final Cache<EqualByteArray, X509Certificate> certCache =
Caffeine.newBuilder().maximumSize(1024).softValues().build();
Expand Down Expand Up @@ -331,7 +331,7 @@ static KeyStore newKeyStoreWithEntry(KeyStore original, Optional<String> passwor
* @return a newly constructed key store of the type trustStoreType that contains the contents of the trust store
* and all default ca certificates.
*/
static KeyStore getCombinedTrustStoreAndDefaultCas(Path trustStorePath, StoreType trustStoreType) {
public static KeyStore getCombinedTrustStoreAndDefaultCas(Path trustStorePath, StoreType trustStoreType) {
KeyStore keyStore;
switch (trustStoreType) {
case JKS:
Expand Down

0 comments on commit 33f6302

Please sign in to comment.