outline - remove unused

This commit is contained in:
Johannes Rieken 2018-06-15 15:05:21 +02:00
parent c20d4fafdf
commit df1dcb0eeb

View file

@ -17,8 +17,6 @@ import { Range } from 'vs/editor/common/core/range';
import { symbolKindToCssClass, SymbolKind } from 'vs/editor/common/modes';
import { IExtensionService } from 'vs/workbench/services/extensions/common/extensions';
import { OutlineElement, OutlineGroup, OutlineModel, TreeElement } from 'vs/editor/contrib/documentSymbols/outlineModel';
import { IEnvironmentService } from 'vs/platform/environment/common/environment';
import { IWorkspaceContextService } from 'vs/platform/workspace/common/workspace';
import { localize } from 'vs/nls';
import { WorkbenchTreeController } from 'vs/platform/list/browser/listService';
import { MarkerSeverity } from 'vs/platform/markers/common/markers';
@ -128,8 +126,6 @@ export class OutlineRenderer implements IRenderer {
constructor(
@IExtensionService readonly _extensionService: IExtensionService,
@IEnvironmentService readonly _environmentService: IEnvironmentService,
@IWorkspaceContextService readonly _contextService: IWorkspaceContextService,
@IThemeService readonly _themeService: IThemeService,
@IConfigurationService readonly _configurationService: IConfigurationService
) {