Clean up services required

This commit is contained in:
Jackson Kearl
2020-04-09 06:17:42 -07:00
parent da1d56500a
commit 9d8bf6d842
2 changed files with 0 additions and 6 deletions

View File

@@ -33,4 +33,3 @@ export function activate(context: vscode.ExtensionContext) {
previewManager.activePreview?.zoomOut();
}));
}

View File

@@ -22,8 +22,6 @@ import { FileEditorInput } from 'vs/workbench/contrib/files/common/editors/fileE
import { SearchEditorFindMatchClass, SearchEditorScheme } from 'vs/workbench/contrib/searchEditor/browser/constants';
import { extractSearchQueryFromModel, parseSavedSearchEditor, serializeSearchConfiguration } from 'vs/workbench/contrib/searchEditor/browser/searchEditorSerialization';
import { IBackupFileService } from 'vs/workbench/services/backup/common/backup';
import { IEditorGroupsService } from 'vs/workbench/services/editor/common/editorGroupsService';
import { IEditorService } from 'vs/workbench/services/editor/common/editorService';
import { IWorkbenchEnvironmentService } from 'vs/workbench/services/environment/common/environmentService';
import { AutoSaveMode, IFilesConfigurationService } from 'vs/workbench/services/filesConfiguration/common/filesConfigurationService';
import { IRemotePathService } from 'vs/workbench/services/path/common/remotePathService';
@@ -71,8 +69,6 @@ export class SearchEditorInput extends EditorInput {
config: Readonly<SearchConfiguration>,
getModel: () => Promise<ITextModel>,
@IModelService private readonly modelService: IModelService,
@IEditorService protected readonly editorService: IEditorService,
@IEditorGroupsService protected readonly editorGroupService: IEditorGroupsService,
@ITextFileService protected readonly textFileService: ITextFileService,
@IWorkbenchEnvironmentService private readonly environmentService: IWorkbenchEnvironmentService,
@IFileDialogService private readonly fileDialogService: IFileDialogService,
@@ -80,7 +76,6 @@ export class SearchEditorInput extends EditorInput {
@IWorkingCopyService private readonly workingCopyService: IWorkingCopyService,
@IFilesConfigurationService private readonly filesConfigurationService: IFilesConfigurationService,
@ITelemetryService private readonly telemetryService: ITelemetryService,
@IModeService readonly modeService: IModeService,
@IRemotePathService private readonly remotePathService: IRemotePathService
) {
super();