aboutsummaryrefslogtreecommitdiff
path: root/netty
diff options
context:
space:
mode:
authorzpencer <spencerfang@google.com>2018-04-04 12:06:31 -0700
committerGitHub <noreply@github.com>2018-04-04 12:06:31 -0700
commit276586a4fb8bd8d96a94cb1008c283a8c5759b53 (patch)
treef853f66e22486680a3abcb458dc653fc8258d0ec /netty
parent2094bb4d8ef20da6e7603f1e109b4cf5ae01ebe1 (diff)
downloadgrpc-grpc-java-276586a4fb8bd8d96a94cb1008c283a8c5759b53.tar.gz
netty,services: fix param comment lint (#4304)
Fix linter complaint because comment does not match arg name.
Diffstat (limited to 'netty')
-rw-r--r--netty/src/main/java/io/grpc/netty/NettyServer.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/netty/src/main/java/io/grpc/netty/NettyServer.java b/netty/src/main/java/io/grpc/netty/NettyServer.java
index 8da3c2820..9de2c918f 100644
--- a/netty/src/main/java/io/grpc/netty/NettyServer.java
+++ b/netty/src/main/java/io/grpc/netty/NettyServer.java
@@ -343,7 +343,7 @@ class NettyServer implements InternalServer, WithLogId {
ret.set(new SocketStats(
/*data=*/ null,
ch.localAddress(),
- /*remoteAddress=*/ null,
+ /*remote=*/ null,
Utils.getSocketOptions(ch),
/*security=*/ null));
return ret;
@@ -356,7 +356,7 @@ class NettyServer implements InternalServer, WithLogId {
ret.set(new SocketStats(
/*data=*/ null,
ch.localAddress(),
- /*remoteAddress=*/ null,
+ /*remote=*/ null,
Utils.getSocketOptions(ch),
/*security=*/ null));
}