changeset 22455:35daf21e71c3

Truffle/REPL debugger: remove disused main() method.
author Michael Van De Vanter <michael.van.de.vanter@oracle.com>
date Wed, 11 Nov 2015 16:17:27 -0800
parents 045c31f9f133
children b092a4e51a25
files truffle/com.oracle.truffle.tools.debug.shell/src/com/oracle/truffle/tools/debug/shell/client/SimpleREPLClient.java
diffstat 1 files changed, 0 insertions(+), 7 deletions(-) [+]
line wrap: on
line diff
--- 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;