From 276586a4fb8bd8d96a94cb1008c283a8c5759b53 Mon Sep 17 00:00:00 2001 From: zpencer Date: Wed, 4 Apr 2018 12:06:31 -0700 Subject: netty,services: fix param comment lint (#4304) Fix linter complaint because comment does not match arg name. --- netty/src/main/java/io/grpc/netty/NettyServer.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'netty') 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)); } -- cgit v1.2.3