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

javadoc: update new API @since version #8727

Merged
merged 1 commit into from Nov 29, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -50,7 +50,7 @@ public static ChannelCredentials create() {
/**
* Returns a new instance of {@link Builder}.
*
* @since 1.42.0
* @since 1.43.0
*/
public static Builder newBuilder() {
return new Builder();
Expand All @@ -59,7 +59,7 @@ public static Builder newBuilder() {
/**
* Builder for {@link GoogleDefaultChannelCredentials} instances.
*
* @since 1.42.0
* @since 1.43.0
*/
public static final class Builder {
private CallCredentials callCredentials;
Expand Down
2 changes: 2 additions & 0 deletions okhttp/src/main/java/io/grpc/okhttp/OkHttpChannelBuilder.java
Expand Up @@ -413,6 +413,8 @@ public OkHttpChannelBuilder connectionSpec(
*
* @param tlsVersions List of tls versions.
* @param cipherSuites List of cipher suites.
*
* @since 1.43.0
*/
public OkHttpChannelBuilder tlsConnectionSpec(
String[] tlsVersions, String[] cipherSuites) {
Expand Down