From 6c59770a5bd54857290dfb0496fe0b81fc79bd57 Mon Sep 17 00:00:00 2001 From: Carl Mastrangelo Date: Fri, 24 Jun 2016 10:52:54 -0700 Subject: [PATCH] core: update issue for Contexts experimental status --- core/src/main/java/io/grpc/Contexts.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/io/grpc/Contexts.java b/core/src/main/java/io/grpc/Contexts.java index b4492ff669..6917878a69 100644 --- a/core/src/main/java/io/grpc/Contexts.java +++ b/core/src/main/java/io/grpc/Contexts.java @@ -140,7 +140,7 @@ public class Contexts { * Returns the {@link Status} of a cancelled context or {@code null} if the context * is not cancelled. */ - @ExperimentalApi("https://github.com/grpc/grpc-java/issues/1705") + @ExperimentalApi("https://github.com/grpc/grpc-java/issues/1975") public static Status statusFromCancelled(Context context) { Preconditions.checkNotNull(context, "context must not be null"); if (!context.isCancelled()) {