From b3475a0e4625d518434f7d89eae7965a44a427cf Mon Sep 17 00:00:00 2001 From: Sergii Tkachenko Date: Mon, 11 Mar 2024 16:15:03 -0700 Subject: [PATCH] api: Remove ExperimentalApi from Attributes.Builder.discard (#11004) Now tracked together with Attributes: https://github.com/grpc/grpc-java/issues/1764. Closes #5777. --- api/src/main/java/io/grpc/Attributes.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/api/src/main/java/io/grpc/Attributes.java b/api/src/main/java/io/grpc/Attributes.java index ca06576550..de00e63554 100644 --- a/api/src/main/java/io/grpc/Attributes.java +++ b/api/src/main/java/io/grpc/Attributes.java @@ -236,13 +236,12 @@ public final class Attributes { } /** - * Removes the key and associated value from the attribtues. + * Removes the key and associated value from the attributes. * * @since 1.22.0 * @param key The key to remove * @return this */ - @ExperimentalApi("https://github.com/grpc/grpc-java/issues/5777") public Builder discard(Key key) { if (base.data.containsKey(key)) { IdentityHashMap, Object> newBaseData = new IdentityHashMap<>(base.data);