Update Netty

This commit is contained in:
md_5
2016-08-30 20:22:02 +10:00
parent 5c809c2499
commit 0581e49d49
3 changed files with 10 additions and 4 deletions

View File

@@ -41,9 +41,9 @@ import net.md_5.bungee.protocol.Varint21LengthFieldPrepender;
public class PipelineUtils
{
public static final AttributeKey<ListenerInfo> LISTENER = new AttributeKey<>( "ListerInfo" );
public static final AttributeKey<UserConnection> USER = new AttributeKey<>( "User" );
public static final AttributeKey<BungeeServerInfo> TARGET = new AttributeKey<>( "Target" );
public static final AttributeKey<ListenerInfo> LISTENER = AttributeKey.valueOf( "ListerInfo" );
public static final AttributeKey<UserConnection> USER = AttributeKey.valueOf( "User" );
public static final AttributeKey<BungeeServerInfo> TARGET = AttributeKey.valueOf( "Target" );
public static final ChannelInitializer<Channel> SERVER_CHILD = new ChannelInitializer<Channel>()
{
@Override