From b79714ab5af563210301e972ca9ddbe7fcca5e8f Mon Sep 17 00:00:00 2001 From: Sky Ao Date: Thu, 8 Oct 2015 11:34:12 +0800 Subject: [PATCH] change type definition of pipeline from DefaultChannelPipeline to ChannelPipeline --- transport/src/main/java/io/netty/channel/AbstractChannel.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/transport/src/main/java/io/netty/channel/AbstractChannel.java b/transport/src/main/java/io/netty/channel/AbstractChannel.java index 4ce044958d..13e6276eec 100644 --- a/transport/src/main/java/io/netty/channel/AbstractChannel.java +++ b/transport/src/main/java/io/netty/channel/AbstractChannel.java @@ -56,7 +56,7 @@ public abstract class AbstractChannel extends DefaultAttributeMap implements Cha private final Channel parent; private final long hashCode = ThreadLocalRandom.current().nextLong(); private final Unsafe unsafe; - private final DefaultChannelPipeline pipeline; + private final ChannelPipeline pipeline; private final ChannelFuture succeededFuture = new SucceededChannelFuture(this, null); private final VoidChannelPromise voidPromise = new VoidChannelPromise(this, true); private final VoidChannelPromise unsafeVoidPromise = new VoidChannelPromise(this, false);