Skip to content

Commit

Permalink
Fix typo classic -> classicRelease
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkusEllyton committed Sep 17, 2024
1 parent 32ea598 commit 4aea385
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/server/ServerFactory.ts
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ export class ServerFactory implements Disposable {
}

// Set classic release mode
const setClassic = serverConfig.get("classic", false);
const setClassic = serverConfig.get("classicRelease", false);
if (setClassic) {
args.push(`-Dvdmj.release=classic`);
}
Expand All @@ -190,6 +190,7 @@ export class ServerFactory implements Disposable {
args.push(...["-cp", classPath, "lsp.LSPServerSocket", "-" + dialect, "-lsp", lspPort.toString(), "-dap", "0"]);

// Start the LSP server
console.log("server args", args);
let server = child_process.spawn(this._javaPath, args, { cwd: wsFolder.uri.fsPath });

// Create output channel for server stdout
Expand Down

0 comments on commit 4aea385

Please sign in to comment.