Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

okhttp: Don't warn about missing Conscrypt #11591

Merged
merged 1 commit into from
Oct 2, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ private static boolean isAtLeastAndroid41() {

/**
* Select the first recognized security provider according to the preference order returned by
* {@link Security#getProviders}. If a recognized provider is not found then warn but continue.
* {@link Security#getProviders}.
*/
private static Provider getAndroidSecurityProvider() {
Provider[] providers = Security.getProviders();
Expand All @@ -295,7 +295,6 @@ private static Provider getAndroidSecurityProvider() {
}
}
}
logger.log(Level.WARNING, "Unable to find Conscrypt");
return null;
}

Expand Down