Remove references to non-working telnet interface.
authorDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Fri, 18 Oct 2013 05:08:44 +0000 (07:08 +0200)
committerDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Fri, 18 Oct 2013 05:08:44 +0000 (07:08 +0200)
src/main/java/net/pterodactylus/xdcc/main/Main.java

index d56ccb1..58d6b01 100644 (file)
@@ -35,7 +35,6 @@ import net.pterodactylus.xdcc.data.Network.NetworkBuilder;
 import net.pterodactylus.xdcc.data.Network.ServerBuilder;
 import net.pterodactylus.xdcc.ui.stdin.CommandReader;
 import net.pterodactylus.xdcc.ui.stdin.NetworkAdapter;
-import net.pterodactylus.xdcc.ui.telnet.TelnetInterface;
 
 import com.google.common.eventbus.AsyncEventBus;
 import com.google.common.eventbus.EventBus;
@@ -100,10 +99,6 @@ public class Main {
                commandReader.start();
                eventBus.register(commandReader);
 
-               TelnetInterface telnetInterface = new TelnetInterface(core, configuration.getTelnetPort());
-               telnetInterface.start();
-               eventBus.register(telnetInterface);
-
                NetworkAdapter networkAcceptor = new NetworkAdapter(eventBus, core, configuration.getTelnetPort());
                networkAcceptor.start();