Update to Netty 4.0.4-Final

This commit is contained in:
md_5 2013-07-24 15:58:02 +10:00
parent fa0ee02beb
commit 09e592295f
3 changed files with 3 additions and 11 deletions

View File

@ -59,7 +59,7 @@
<properties>
<build.number>unknown</build.number>
<netty.version>4.0.4.Final-SNAPSHOT</netty.version>
<netty.version>4.0.4.Final</netty.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

View File

@ -209,11 +209,6 @@ public class BungeeCord extends ProxyServer
@Override
public void start() throws Exception
{
if ( System.getProperty( "io.netty.noResourceLeakDetection" ) != null )
{
System.setProperty( "io.netty.noResourceLeakDetection", "true" );
}
pluginsFolder.mkdir();
pluginManager.detectPlugins( pluginsFolder );
config.load();

View File

@ -63,10 +63,7 @@ public class HandlerBoss extends ChannelInboundHandlerAdapter
@Override
public void channelRead(ChannelHandlerContext ctx, Object msg) throws Exception
{
if ( ctx.channel().isActive() )
{
msgs.add( msg );
}
msgs.add( msg );
}
@Override
@ -76,7 +73,7 @@ public class HandlerBoss extends ChannelInboundHandlerAdapter
while ( !msgs.isEmpty() )
{
Object msg = msgs.remove();
if ( handler != null && ctx.channel().isActive() )
if ( handler != null )
{
if ( msg instanceof PacketWrapper )
{