From 37ab826f98a2d1ff1ff70211a3beb33fb4cf8c46 Mon Sep 17 00:00:00 2001 From: Terry Wilson Date: Mon, 22 May 2023 14:55:47 -0700 Subject: [PATCH] api: Experimental CallCredentials.thisUsesUnstableApi() 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. --- api/src/main/java/io/grpc/CallCredentials.java | 1 + 1 file changed, 1 insertion(+) diff --git a/api/src/main/java/io/grpc/CallCredentials.java b/api/src/main/java/io/grpc/CallCredentials.java index 4ad1f52c180..31b68b22dae 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 void applyRequestMetadata( * 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() { }