# HG changeset patch # User Michael Van De Vanter # Date 1447287447 28800 # Node ID 35daf21e71c3971bce12494a845084224f2db528 # Parent 045c31f9f133ba43c46ba3db7e4883b7b821f086 Truffle/REPL debugger: remove disused main() method. diff -r 045c31f9f133 -r 35daf21e71c3 truffle/com.oracle.truffle.tools.debug.shell/src/com/oracle/truffle/tools/debug/shell/client/SimpleREPLClient.java --- a/truffle/com.oracle.truffle.tools.debug.shell/src/com/oracle/truffle/tools/debug/shell/client/SimpleREPLClient.java Wed Nov 11 16:11:23 2015 -0800 +++ b/truffle/com.oracle.truffle.tools.debug.shell/src/com/oracle/truffle/tools/debug/shell/client/SimpleREPLClient.java Wed Nov 11 16:17:27 2015 -0800 @@ -108,13 +108,6 @@ // Current local context ClientContextImpl clientContext; - // Cheating for the prototype; prototype startup now happens from the language server. - // So this isn't used. - public static void main(String[] args) { - final SimpleREPLClient repl = new SimpleREPLClient(null); - repl.start(); - } - private final ConsoleReader reader; private final PrintStream writer;