fix strict null error for debug

This commit is contained in:
Andre Weinand
2018-11-21 00:09:02 +01:00
parent c1722e940f
commit 115ea4afe3

View File

@@ -1963,7 +1963,7 @@ export class DebugAdapterExecutable implements vscode.DebugAdapterExecutable {
export class DebugAdapterServer implements vscode.DebugAdapterServer {
readonly port: number;
readonly host: string;
readonly host?: string;
constructor(port: number, host?: string) {
this.port = port;