From 6d8a66f3e3e4ac023fda28a19115877441ab41b5 Mon Sep 17 00:00:00 2001 From: Eric Anderson Date: Fri, 16 Jun 2017 14:55:53 -0700 Subject: [PATCH] core: Mark InternalNotifyOnServerBuilder @Internal It is misnamed if it is @ExperimentalApi. Even being @Internal is strange, since nothing in io.grpc actually uses it and so it could actually be in io.grpc.internal. I'm not trying to fix the API, but just make it slightly more consistent. --- core/src/main/java/io/grpc/InternalNotifyOnServerBuild.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/io/grpc/InternalNotifyOnServerBuild.java b/core/src/main/java/io/grpc/InternalNotifyOnServerBuild.java index e76dbab3b0..ed4ebcb221 100644 --- a/core/src/main/java/io/grpc/InternalNotifyOnServerBuild.java +++ b/core/src/main/java/io/grpc/InternalNotifyOnServerBuild.java @@ -21,7 +21,7 @@ package io.grpc; * {@link ServerBuilder} is that this method will be called on all registered services implementing * the interface after build() has been called and before the {@link Server} instance is returned. */ -@ExperimentalApi("https://github.com/grpc/grpc-java/issues/2222") +@Internal public interface InternalNotifyOnServerBuild { /** Notifies the service that the server has been built. */ void notifyOnBuild(Server server);