From e9a1035f5a5254fb09114c0026c12631a9b35cb0 Mon Sep 17 00:00:00 2001 From: rebornix Date: Wed, 6 May 2020 13:41:04 -0700 Subject: [PATCH] :lipstick: --- .../workbench/contrib/notebook/browser/notebookEditorInput.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/vs/workbench/contrib/notebook/browser/notebookEditorInput.ts b/src/vs/workbench/contrib/notebook/browser/notebookEditorInput.ts index 72cdd118a4c..50405b6e34c 100644 --- a/src/vs/workbench/contrib/notebook/browser/notebookEditorInput.ts +++ b/src/vs/workbench/contrib/notebook/browser/notebookEditorInput.ts @@ -11,7 +11,6 @@ import { IInstantiationService } from 'vs/platform/instantiation/common/instanti import { IFilesConfigurationService, AutoSaveMode } from 'vs/workbench/services/filesConfiguration/common/filesConfigurationService'; import { NotebookEditorModel } from 'vs/workbench/contrib/notebook/common/notebookEditorModel'; import { IFileDialogService } from 'vs/platform/dialogs/common/dialogs'; -import { IEditorService } from 'vs/workbench/services/editor/common/editorService'; export class NotebookEditorInput extends EditorInput { @@ -43,7 +42,7 @@ export class NotebookEditorInput extends EditorInput { @INotebookService private readonly notebookService: INotebookService, @IFilesConfigurationService private readonly filesConfigurationService: IFilesConfigurationService, @IFileDialogService private readonly fileDialogService: IFileDialogService, - @IEditorService private readonly editorService: IEditorService, + // @IEditorService private readonly editorService: IEditorService, @IInstantiationService private readonly instantiationService: IInstantiationService ) { super(); -- GitLab