Skip to content

Commit 2be568d

Browse files
authored
core: stabilize MutableHandlerRegistry by removing ExperimentalApi annotation (#10348)
1 parent ed4cc89 commit 2be568d

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

core/src/main/java/io/grpc/util/MutableHandlerRegistry.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,12 @@
3131
import javax.annotation.concurrent.ThreadSafe;
3232

3333
/**
34-
* Default implementation of {@link MutableHandlerRegistry}.
34+
* Default implementation of {@link HandlerRegistry}.
3535
*
3636
* <p>Uses {@link ConcurrentHashMap} to avoid service registration excessively
3737
* blocking method lookup.
3838
*/
3939
@ThreadSafe
40-
@ExperimentalApi("https://github.com/grpc/grpc-java/issues/933")
4140
public final class MutableHandlerRegistry extends HandlerRegistry {
4241
private final ConcurrentMap<String, ServerServiceDefinition> services
4342
= new ConcurrentHashMap<>();

0 commit comments

Comments
 (0)