Push not-null assertion further down to usage

This commit is contained in:
Alex Dima
2020-06-18 13:18:40 +02:00
parent 18f9cdaf37
commit 39e3340d04
3 changed files with 3 additions and 3 deletions

View File

@@ -81,7 +81,7 @@ export class MainThreadTerminalService implements MainThreadTerminalServiceShape
this._proxy.$initEnvironmentVariableCollections(serializedCollections);
}
this._terminalService.extHostReady(extHostContext.remoteAuthority);
this._terminalService.extHostReady(extHostContext.remoteAuthority!); // TODO@Tyriar: remove null assertion
}
public dispose(): void {