Update to Netty 4.0.4-Final
This commit is contained in:
2
pom.xml
2
pom.xml
@@ -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>
|
||||
|
||||
|
@@ -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();
|
||||
|
@@ -62,12 +62,9 @@ public class HandlerBoss extends ChannelInboundHandlerAdapter
|
||||
|
||||
@Override
|
||||
public void channelRead(ChannelHandlerContext ctx, Object msg) throws Exception
|
||||
{
|
||||
if ( ctx.channel().isActive() )
|
||||
{
|
||||
msgs.add( msg );
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void channelReadComplete(ChannelHandlerContext ctx) throws Exception
|
||||
@@ -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 )
|
||||
{
|
||||
|
Reference in New Issue
Block a user