Skip to content

Commit

Permalink
Fix NPE when using 'Launch Extension - JDTLS Client' to local debug e…
Browse files Browse the repository at this point in the history
…xtension (#3677)
  • Loading branch information
testforstephen authored Jun 19, 2024
1 parent 70ebc3e commit bc1efd6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/javaServerStarter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export function prepareExecutable(requirements: RequirementsData, workspacePath,
executable.transport = TransportKind.pipe;
break;
}
logger.info(`Starting Java server with: ${executable.command} ${executable.args.join(' ')}`);
logger.info(`Starting Java server with: ${executable.command} ${executable.args?.join(' ')}`);
return executable;
}
export function awaitServerConnection(port): Thenable<StreamInfo> {
Expand Down

0 comments on commit bc1efd6

Please sign in to comment.