Skip to content

Commit

Permalink
api: Stabilize the Status.asException() call. (#8520)
Browse files Browse the repository at this point in the history
Removes the ExperimentalApi annotation from this call.

Contributes to: #4683
  • Loading branch information
temawi committed Sep 13, 2021
1 parent 6e89919 commit 876f56e
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion api/src/main/java/io/grpc/Status.java
Expand Up @@ -546,7 +546,6 @@ public StatusException asException() {
/**
* Same as {@link #asException()} but includes the provided trailers in the returned exception.
*/
@ExperimentalApi("https://github.com/grpc/grpc-java/issues/4683")
public StatusException asException(@Nullable Metadata trailers) {
return new StatusException(this, trailers);
}
Expand Down

0 comments on commit 876f56e

Please sign in to comment.