Skip to content

Commit

Permalink
fix: remove @BetaApi from ApiFutures and ApiService (#2454)
Browse files Browse the repository at this point in the history
fixes #2098
  • Loading branch information
zhumin8 committed Feb 29, 2024
1 parent c8d145b commit f59e717
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
Expand Up @@ -161,7 +161,6 @@ public static <V, X extends Throwable> ApiFuture<V> catching(
* callback}
* @see Futures#catchingAsync(ListenableFuture, Class, AsyncFunction, Executor)
*/
@BetaApi
public static <V, X extends Throwable> ApiFuture<V> catchingAsync(
ApiFuture<V> input,
Class<X> exceptionType,
Expand Down
Expand Up @@ -165,7 +165,6 @@ public interface ApiService {
* {@code A.compareTo(B) < 0} then there is <b>not</b> 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
Expand Down Expand Up @@ -198,7 +197,6 @@ enum State {
*
* <p>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
Expand Down

0 comments on commit f59e717

Please sign in to comment.