From 47045e12cd5a66dd489cd1a269e5214b0a47f1cb Mon Sep 17 00:00:00 2001 From: Trustin Lee Date: Thu, 30 Aug 2012 14:06:56 +0900 Subject: [PATCH] Fix a checkstyle violation --- .../main/java/io/netty/channel/socket/SocketChannelConfig.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/transport/src/main/java/io/netty/channel/socket/SocketChannelConfig.java b/transport/src/main/java/io/netty/channel/socket/SocketChannelConfig.java index fb1121b659..ea1f00e402 100644 --- a/transport/src/main/java/io/netty/channel/socket/SocketChannelConfig.java +++ b/transport/src/main/java/io/netty/channel/socket/SocketChannelConfig.java @@ -139,7 +139,7 @@ public interface SocketChannelConfig extends ChannelConfig { /** * Sets whether the channel should not close itself when its remote peer shuts down output to * make the connection half-closed. If {@code true} the connection is not closed when the - * remote peer shuts down output. Instead, {@link ChannelHandler#userEventTriggered(ChannelHandlerContext, Object)} + * remote peer shuts down output. Instead, {@link ChannelHandler#userEventTriggered(ChannelHandlerContext, Object)} * is invoked with a {@link ChannelInputShutdownEvent} object. If {@code false}, the connection * is closed automatically. */