mirror of https://github.com/grpc/grpc-java.git
services: fix channelz javadoc lint for reference not found (#4920)
Referring to the public abstract class seems to be OK, but referring to the package private impl trips the linter.
This commit is contained in:
parent
f10676c2b4
commit
5eb816b3b1
|
|
@ -61,7 +61,7 @@ public final class ChannelzService extends ChannelzGrpc.ChannelzImplBase {
|
|||
this.maxPageSize = maxPageSize;
|
||||
}
|
||||
|
||||
/** Returns top level channel aka {@link io.grpc.internal.ManagedChannelImpl}. */
|
||||
/** Returns top level channel aka {@link io.grpc.ManagedChannel}. */
|
||||
@Override
|
||||
public void getTopChannels(
|
||||
GetTopChannelsRequest request, StreamObserver<GetTopChannelsResponse> responseObserver) {
|
||||
|
|
@ -72,7 +72,7 @@ public final class ChannelzService extends ChannelzGrpc.ChannelzImplBase {
|
|||
responseObserver.onCompleted();
|
||||
}
|
||||
|
||||
/** Returns a top level channel aka {@link io.grpc.internal.ManagedChannelImpl}. */
|
||||
/** Returns a top level channel aka {@link io.grpc.ManagedChannel}. */
|
||||
@Override
|
||||
public void getChannel(
|
||||
GetChannelRequest request, StreamObserver<GetChannelResponse> responseObserver) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue