mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-25 11:08:51 +01:00
Remove unused ext host <-> main thread comm class
This commit is contained in:
@@ -7,9 +7,9 @@
|
||||
import {IDisposable, dispose} from 'vs/base/common/lifecycle';
|
||||
import {IThreadService} from 'vs/workbench/services/thread/common/threadService';
|
||||
import {IConfigurationService} from 'vs/platform/configuration/common/configuration';
|
||||
import {MainThreadConfigurationShape, ExtHostContext, ExtHostConfigurationShape} from './extHost.protocol';
|
||||
import {ExtHostContext, ExtHostConfigurationShape} from './extHost.protocol';
|
||||
|
||||
export class MainThreadConfiguration extends MainThreadConfigurationShape {
|
||||
export class MainThreadConfiguration {
|
||||
|
||||
private _configurationService: IConfigurationService;
|
||||
private _toDispose: IDisposable;
|
||||
@@ -19,8 +19,6 @@ export class MainThreadConfiguration extends MainThreadConfigurationShape {
|
||||
@IConfigurationService configurationService: IConfigurationService,
|
||||
@IThreadService threadService: IThreadService
|
||||
) {
|
||||
super();
|
||||
|
||||
this._configurationService = configurationService;
|
||||
this._proxy = threadService.get(ExtHostContext.ExtHostConfiguration);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user