diff --git a/src/vs/workbench/parts/debug/browser/debugEditorInputs.ts b/src/vs/workbench/parts/debug/browser/debugEditorInputs.ts index 71c1e906ea2b2c392e211f02ba2b516b5f60efb6..e451744744d6cc30966a036986a0d9866d389891 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,