api: Experimental CallCredentials.thisUsesUnstableApi() (#10211)

The thisUsesUnstableApi() method was earlier deprecated and the
@ExperimentalApi annotation removed. Adding @ExperimentalApi back
to make it clear that this method can (and will) later be removed.
This commit is contained in:
Terry Wilson 2023-05-23 08:32:33 -07:00 committed by GitHub
parent dd2dc21de2
commit e172ea7efc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -60,6 +60,7 @@ public abstract class CallCredentials {
* a no-op implementation. This method is marked deprecated to allow extenders time to remove the
* method before it is removed here.
*/
@ExperimentalApi("https://github.com/grpc/grpc-java/issues/1914")
@Deprecated
public void thisUsesUnstableApi() {
}