From ddd1eeccbd8bcc145077cf4585b7c3a90bae8f44 Mon Sep 17 00:00:00 2001 From: SeeBasTStick <sebastian.stock@hhu.de> Date: Tue, 20 Oct 2020 08:49:23 +0200 Subject: [PATCH] unocomment manual server --- src/extension.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/extension.ts b/src/extension.ts index 3481592..a8f4f4b 100644 --- a/src/extension.ts +++ b/src/extension.ts @@ -32,9 +32,9 @@ export function activate(context: ExtensionContext) { //Start the server // comment the two lines (and the closing brackets) if you want to run a server by hand -> for developing -// let prc = spawn(javaHome, ['-jar', serverHome]) + let prc = spawn(javaHome, ['-jar', serverHome]) -// prc.stdout.on('data', function (data) { + prc.stdout.on('data', function (data) { let connectionInfo = { port: 55556, @@ -104,7 +104,7 @@ export function activate(context: ExtensionContext) { showDebugMessages(debugChannle) }) -// }) + }) } -- GitLab