Skip to content

Commit

Permalink
android: final stabilization of AndroidChannelBuilder (#6097)
Browse files Browse the repository at this point in the history
* Removed ExperimentalApi annotation for AndroidChannelBuilder

* Put ExperimentalApi annotation back to deprecated method.
  • Loading branch information
voidzcy committed Aug 28, 2019
1 parent 1e475be commit 5fbe2ed
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -51,7 +51,6 @@
*
* @since 1.12.0
*/
@ExperimentalApi("https://github.com/grpc/grpc-java/issues/6043")
public final class AndroidChannelBuilder extends ForwardingChannelBuilder<AndroidChannelBuilder> {

private static final String LOG_TAG = "AndroidChannelBuilder";
Expand Down Expand Up @@ -90,6 +89,7 @@ public static AndroidChannelBuilder forAddress(String name, int port) {
*
* @deprecated Use {@link #usingBuilder(ManagedChannelBuilder)} instead.
*/
@ExperimentalApi("https://github.com/grpc/grpc-java/issues/6043")
@Deprecated
public static AndroidChannelBuilder fromBuilder(ManagedChannelBuilder<?> builder) {
return usingBuilder(builder);
Expand Down

0 comments on commit 5fbe2ed

Please sign in to comment.