mirror of
https://github.com/Microsoft/vscode
synced 2024-11-05 18:29:38 +00:00
Merge pull request #59713 from spahnke/initialize-scheme
[StandaloneEditor] Initialize static field 'SCHEME'
This commit is contained in:
commit
735f6a7bb9
1 changed files with 1 additions and 1 deletions
|
@ -493,7 +493,7 @@ export class SimpleWorkspaceContextService implements IWorkspaceContextService {
|
|||
|
||||
public _serviceBrand: any;
|
||||
|
||||
private static SCHEME: 'inmemory';
|
||||
private static SCHEME = 'inmemory';
|
||||
|
||||
private readonly _onDidChangeWorkspaceName: Emitter<void> = new Emitter<void>();
|
||||
public readonly onDidChangeWorkspaceName: Event<void> = this._onDidChangeWorkspaceName.event;
|
||||
|
|
Loading…
Reference in a new issue