From 0a4d76def62ce7ed62578af57e1312362bb81dfa Mon Sep 17 00:00:00 2001 From: Christopher Maynard Date: Thu, 7 May 2020 19:10:26 -0400 Subject: [PATCH] Removed extra imports made by merge --- src/vs/workbench/contrib/notebook/browser/notebookEditor.ts | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/vs/workbench/contrib/notebook/browser/notebookEditor.ts b/src/vs/workbench/contrib/notebook/browser/notebookEditor.ts index 645deeda049..929dbc680d9 100644 --- a/src/vs/workbench/contrib/notebook/browser/notebookEditor.ts +++ b/src/vs/workbench/contrib/notebook/browser/notebookEditor.ts @@ -18,6 +18,7 @@ import { BareFontInfo } from 'vs/editor/common/config/fontInfo'; import { IPosition, Position } from 'vs/editor/common/core/position'; import { Range } from 'vs/editor/common/core/range'; import { ICompositeCodeEditor, IEditor } from 'vs/editor/common/editorCommon'; +import { IReadonlyTextBuffer } from 'vs/editor/common/model'; import * as nls from 'vs/nls'; import { IConfigurationService } from 'vs/platform/configuration/common/configuration'; import { IContextKey, IContextKeyService } from 'vs/platform/contextkey/common/contextkey'; @@ -47,10 +48,6 @@ import { INotebookService } from 'vs/workbench/contrib/notebook/common/notebookS import { Webview } from 'vs/workbench/contrib/webview/browser/webview'; import { getExtraColor } from 'vs/workbench/contrib/welcome/walkThrough/common/walkThroughUtils'; import { IEditorGroup, IEditorGroupsService } from 'vs/workbench/services/editor/common/editorGroupsService'; -import { NotebookEditorExtensionsRegistry } from 'vs/workbench/contrib/notebook/browser/notebookEditorExtensions'; -import { onUnexpectedError } from 'vs/base/common/errors'; -import { IPosition, Position } from 'vs/editor/common/core/position'; -import { IReadonlyTextBuffer } from 'vs/editor/common/model'; const $ = DOM.$; const NOTEBOOK_EDITOR_VIEW_STATE_PREFERENCE_KEY = 'NotebookEditorViewState'; -- GitLab