:chore: remove unused type

This commit is contained in:
Benjamin Pasero 2021-08-10 11:43:44 +02:00
parent 71b299184f
commit 53ed7fbcac
No known key found for this signature in database
GPG key ID: E6380CC4C8219E65
3 changed files with 4 additions and 6 deletions

View file

@ -32,7 +32,6 @@ import { IEditorService } from 'vs/workbench/services/editor/common/editorServic
import { IElevatedFileService } from 'vs/workbench/services/files/common/elevatedFileService';
import { IFilesConfigurationService } from 'vs/workbench/services/filesConfiguration/common/filesConfigurationService';
import { ILifecycleService } from 'vs/workbench/services/lifecycle/common/lifecycle';
import { ITextFileService } from 'vs/workbench/services/textfile/common/textfiles';
import { IWorkingCopyBackupService } from 'vs/workbench/services/workingCopy/common/workingCopyBackup';
import { IWorkingCopyEditorService } from 'vs/workbench/services/workingCopy/common/workingCopyEditorService';
import { IWorkingCopyService } from 'vs/workbench/services/workingCopy/common/workingCopyService';
@ -149,7 +148,6 @@ export class FileWorkingCopyManager<S extends IStoredFileWorkingCopyModel, U ext
@IWorkingCopyBackupService workingCopyBackupService: IWorkingCopyBackupService,
@IUriIdentityService private readonly uriIdentityService: IUriIdentityService,
@IFileDialogService private readonly fileDialogService: IFileDialogService,
@ITextFileService textFileService: ITextFileService,
@IFilesConfigurationService filesConfigurationService: IFilesConfigurationService,
@IWorkingCopyService workingCopyService: IWorkingCopyService,
@INotificationService notificationService: INotificationService,

View file

@ -35,7 +35,7 @@ suite('FileWorkingCopyManager', () => {
new TestUntitledFileWorkingCopyModelFactory(),
accessor.fileService, accessor.lifecycleService, accessor.labelService, accessor.logService,
accessor.workingCopyFileService, accessor.workingCopyBackupService, accessor.uriIdentityService, accessor.fileDialogService,
accessor.textFileService, accessor.filesConfigurationService, accessor.workingCopyService, accessor.notificationService,
accessor.filesConfigurationService, accessor.workingCopyService, accessor.notificationService,
accessor.workingCopyEditorService, accessor.editorService, accessor.elevatedFileService, accessor.pathService,
accessor.environmentService, accessor.dialogService
);

View file

@ -34,7 +34,7 @@ suite('UntitledFileWorkingCopyManager', () => {
new TestUntitledFileWorkingCopyModelFactory(),
accessor.fileService, accessor.lifecycleService, accessor.labelService, accessor.logService,
accessor.workingCopyFileService, accessor.workingCopyBackupService, accessor.uriIdentityService, accessor.fileDialogService,
accessor.textFileService, accessor.filesConfigurationService, accessor.workingCopyService, accessor.notificationService,
accessor.filesConfigurationService, accessor.workingCopyService, accessor.notificationService,
accessor.workingCopyEditorService, accessor.editorService, accessor.elevatedFileService, accessor.pathService,
accessor.environmentService, accessor.dialogService
);
@ -275,7 +275,7 @@ suite('UntitledFileWorkingCopyManager', () => {
new TestUntitledFileWorkingCopyModelFactory(),
accessor.fileService, accessor.lifecycleService, accessor.labelService, accessor.logService,
accessor.workingCopyFileService, accessor.workingCopyBackupService, accessor.uriIdentityService, accessor.fileDialogService,
accessor.textFileService, accessor.filesConfigurationService, accessor.workingCopyService, accessor.notificationService,
accessor.filesConfigurationService, accessor.workingCopyService, accessor.notificationService,
accessor.workingCopyEditorService, accessor.editorService, accessor.elevatedFileService, accessor.pathService,
accessor.environmentService, accessor.dialogService
);
@ -297,7 +297,7 @@ suite('UntitledFileWorkingCopyManager', () => {
new TestUntitledFileWorkingCopyModelFactory(),
accessor.fileService, accessor.lifecycleService, accessor.labelService, accessor.logService,
accessor.workingCopyFileService, accessor.workingCopyBackupService, accessor.uriIdentityService, accessor.fileDialogService,
accessor.textFileService, accessor.filesConfigurationService, accessor.workingCopyService, accessor.notificationService,
accessor.filesConfigurationService, accessor.workingCopyService, accessor.notificationService,
accessor.workingCopyEditorService, accessor.editorService, accessor.elevatedFileService, accessor.pathService,
accessor.environmentService, accessor.dialogService
);