This commit is contained in:
Trustin Lee 2009-02-09 08:10:37 +00:00
parent a698db26c9
commit 78963bef7d

View File

@ -418,7 +418,7 @@ public class Channels {
* {@link ChannelUpstreamHandler} in the {@link ChannelPipeline} where
* the specified {@link ChannelHandlerContext} belongs.
*/
public static void fireWriteCompleted(ChannelHandlerContext ctx, int amount) {
public static void fireWriteComplete(ChannelHandlerContext ctx, int amount) {
ctx.sendUpstream(new DefaultWriteCompletionEvent(ctx.getChannel(), amount));
}