From 1763dd307873e16189e49ac7c33175898b4760ee Mon Sep 17 00:00:00 2001 From: md_5 Date: Wed, 13 Mar 2013 18:07:07 +1100 Subject: [PATCH] Remove unneeded channel option. Still trying to fix all these disconnect errors though. --- proxy/src/main/java/net/md_5/bungee/netty/PipelineUtils.java | 1 - 1 file changed, 1 deletion(-) diff --git a/proxy/src/main/java/net/md_5/bungee/netty/PipelineUtils.java b/proxy/src/main/java/net/md_5/bungee/netty/PipelineUtils.java index 0e128da1..5b127292 100644 --- a/proxy/src/main/java/net/md_5/bungee/netty/PipelineUtils.java +++ b/proxy/src/main/java/net/md_5/bungee/netty/PipelineUtils.java @@ -30,7 +30,6 @@ public class PipelineUtils { BASE.initChannel( ch ); ch.pipeline().get( HandlerBoss.class ).setHandler( new InitialHandler( ProxyServer.getInstance(), ch.attr( LISTENER ).get() ) ); - ch.config().setDefaultHandlerByteBufType( ChannelConfig.ChannelHandlerByteBufType.HEAP ); } }; public static final ChannelInitializer CLIENT = new ChannelInitializer()