From ea3539722e3deda575b84434d401aae1ded168e5 Mon Sep 17 00:00:00 2001 From: isidor Date: Tue, 13 Dec 2016 11:21:44 +0100 Subject: [PATCH] debugEditorInput import polish --- src/vs/workbench/parts/debug/browser/debugEditorInputs.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/vs/workbench/parts/debug/browser/debugEditorInputs.ts b/src/vs/workbench/parts/debug/browser/debugEditorInputs.ts index 71c1e906ea2..e451744744d 100644 --- a/src/vs/workbench/parts/debug/browser/debugEditorInputs.ts +++ b/src/vs/workbench/parts/debug/browser/debugEditorInputs.ts @@ -3,14 +3,14 @@ * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ +import uri from 'vs/base/common/uri'; import { TPromise } from 'vs/base/common/winjs.base'; import { PLAINTEXT_MODE_ID } from 'vs/editor/common/modes/modesRegistry'; -import strinput = require('vs/workbench/common/editor/stringEditorInput'); -import { EditorInput, EditorModel } from 'vs/workbench/common/editor'; -import uri from 'vs/base/common/uri'; import { IInstantiationService } from 'vs/platform/instantiation/common/instantiation'; +import { StringEditorInput } from 'vs/workbench/common/editor/stringEditorInput'; +import { EditorInput, EditorModel } from 'vs/workbench/common/editor'; -export class DebugStringEditorInput extends strinput.StringEditorInput { +export class DebugStringEditorInput extends StringEditorInput { constructor( name: string, -- GitLab