From 47d141ed91c0e66326105511593b0dc1ab3cb1a3 Mon Sep 17 00:00:00 2001 From: Trustin Lee Date: Mon, 1 Sep 2008 14:34:56 +0000 Subject: [PATCH] Shortened the first statement of ChannelHandler description --- src/main/java/org/jboss/netty/channel/ChannelHandler.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/jboss/netty/channel/ChannelHandler.java b/src/main/java/org/jboss/netty/channel/ChannelHandler.java index 25fdab1b90..83c6248807 100644 --- a/src/main/java/org/jboss/netty/channel/ChannelHandler.java +++ b/src/main/java/org/jboss/netty/channel/ChannelHandler.java @@ -23,8 +23,8 @@ package org.jboss.netty.channel; /** - * Handles or intercepts a {@link ChannelEvent}, and fires a new, modified, or - * existing {@link ChannelEvent} to the next handler in a {@link ChannelPipeline}. + * Handles or intercepts a {@link ChannelEvent}, and fires a + * {@link ChannelEvent} to the next handler in a {@link ChannelPipeline}. *

* This is a tag interface. There are two sub-interfaces which processes * a received event actually, one for upstream events and the other for