aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTerry Wilson <tmwilson@google.com>2023-05-23 08:32:33 -0700
committerGitHub <noreply@github.com>2023-05-23 08:32:33 -0700
commite172ea7efce9597ab597c8dfe66147c02248aa00 (patch)
treee6ade692f92ee3d93b26283d4b46c7671a5c88c2
parentdd2dc21de21f13ae5542e2b0cfdb71764505bcc1 (diff)
downloadgrpc-grpc-java-e172ea7efce9597ab597c8dfe66147c02248aa00.tar.gz
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.
-rw-r--r--api/src/main/java/io/grpc/CallCredentials.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/api/src/main/java/io/grpc/CallCredentials.java b/api/src/main/java/io/grpc/CallCredentials.java
index 4ad1f52c1..31b68b22d 100644
--- a/api/src/main/java/io/grpc/CallCredentials.java
+++ b/api/src/main/java/io/grpc/CallCredentials.java
@@ -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() {
}