diff --git a/api-common-java/src/main/java/com/google/api/core/ApiFutures.java b/api-common-java/src/main/java/com/google/api/core/ApiFutures.java index 4c263ce845..780c50a783 100644 --- a/api-common-java/src/main/java/com/google/api/core/ApiFutures.java +++ b/api-common-java/src/main/java/com/google/api/core/ApiFutures.java @@ -161,7 +161,6 @@ public static ApiFuture catching( * callback} * @see Futures#catchingAsync(ListenableFuture, Class, AsyncFunction, Executor) */ - @BetaApi public static ApiFuture catchingAsync( ApiFuture input, Class exceptionType, diff --git a/api-common-java/src/main/java/com/google/api/core/ApiService.java b/api-common-java/src/main/java/com/google/api/core/ApiService.java index ee49e78f3c..cd3545d8b9 100644 --- a/api-common-java/src/main/java/com/google/api/core/ApiService.java +++ b/api-common-java/src/main/java/com/google/api/core/ApiService.java @@ -165,7 +165,6 @@ public interface ApiService { * {@code A.compareTo(B) < 0} then there is not guaranteed to be a valid state transition * {@code A -> B}. */ - @BetaApi enum State { /** * A service in this state has encountered a problem and may not be operational. It cannot be @@ -198,7 +197,6 @@ enum State { * *

All methods are no-ops by default, implementors should override the ones they care about. */ - @BetaApi abstract class Listener { /** * Called when the service transitions to the {@linkplain State#FAILED FAILED} state. The