Merge pull request #475 from danbev/channel_handler_context_typo

Minor typo in exception message of DefaultChannelHandlerContext
This commit is contained in:
Norman Maurer 2012-07-25 12:08:15 -07:00
commit 137525d4c5

View File

@ -240,7 +240,7 @@ final class DefaultChannelHandlerContext extends DefaultAttributeMap implements
}
if (buf == null) {
throw new ChannelPipelineException("A user handler's newInboundBuffer() returned null");
throw new ChannelPipelineException("A user handler's newOutboundBuffer() returned null");
}
if (buf instanceof ByteBuf) {