remove getConfiguration() from workspace service

This commit is contained in:
Benjamin Pasero
2016-08-17 15:35:26 +02:00
parent ffd210a7a5
commit d1491f4ac5
13 changed files with 24 additions and 75 deletions

View File

@@ -44,7 +44,6 @@ export interface IInitData {
threadService: any;
contextService: {
workspace: any;
configuration: any;
options: any;
};
}
@@ -74,7 +73,7 @@ export class ExtensionHostMain {
this._environment = initData.environment;
this._contextService = new BaseWorkspaceContextService(initData.contextService.workspace, initData.contextService.configuration, initData.contextService.options);
this._contextService = new BaseWorkspaceContextService(initData.contextService.workspace, initData.contextService.options);
const workspaceStoragePath = this._getOrCreateWorkspaceStoragePath();
const threadService = new ExtHostThreadService(remoteCom);