Commented unused telnet parameter.

This commit is contained in:
MobiusDev 2017-08-07 22:05:43 +00:00
parent 7bb9561e28
commit ad68a0b985
3 changed files with 3 additions and 6 deletions

View File

@ -27,7 +27,6 @@ import com.l2jmobius.Config;
import io.netty.bootstrap.ServerBootstrap;
import io.netty.channel.ChannelHandlerContext;
import io.netty.channel.ChannelOption;
import io.netty.channel.EventLoopGroup;
import io.netty.channel.nio.NioEventLoopGroup;
import io.netty.channel.socket.nio.NioServerSocketChannel;
@ -96,7 +95,7 @@ public class TelnetServer
//@formatter:off
new ServerBootstrap().group(_workerGroup)
.channel(NioServerSocketChannel.class)
.option(ChannelOption.SO_KEEPALIVE, true)
//.option(ChannelOption.SO_KEEPALIVE, true)
.childHandler(new TelnetServerInitializer())
.bind(socket);
//@formatter:on

View File

@ -27,7 +27,6 @@ import com.l2jmobius.Config;
import io.netty.bootstrap.ServerBootstrap;
import io.netty.channel.ChannelHandlerContext;
import io.netty.channel.ChannelOption;
import io.netty.channel.EventLoopGroup;
import io.netty.channel.nio.NioEventLoopGroup;
import io.netty.channel.socket.nio.NioServerSocketChannel;
@ -96,7 +95,7 @@ public class TelnetServer
//@formatter:off
new ServerBootstrap().group(_workerGroup)
.channel(NioServerSocketChannel.class)
.option(ChannelOption.SO_KEEPALIVE, true)
//.option(ChannelOption.SO_KEEPALIVE, true)
.childHandler(new TelnetServerInitializer())
.bind(socket);
//@formatter:on

View File

@ -27,7 +27,6 @@ import com.l2jmobius.Config;
import io.netty.bootstrap.ServerBootstrap;
import io.netty.channel.ChannelHandlerContext;
import io.netty.channel.ChannelOption;
import io.netty.channel.EventLoopGroup;
import io.netty.channel.nio.NioEventLoopGroup;
import io.netty.channel.socket.nio.NioServerSocketChannel;
@ -96,7 +95,7 @@ public class TelnetServer
//@formatter:off
new ServerBootstrap().group(_workerGroup)
.channel(NioServerSocketChannel.class)
.option(ChannelOption.SO_KEEPALIVE, true)
//.option(ChannelOption.SO_KEEPALIVE, true)
.childHandler(new TelnetServerInitializer())
.bind(socket);
//@formatter:on