From c698fddbeee1d5bbbaa6cb4d6560bbc22a5daffc Mon Sep 17 00:00:00 2001 From: Benjamin Pasero Date: Mon, 23 Jan 2017 07:42:08 +0100 Subject: [PATCH] usual every morning build fixing --- extensions/typescript/src/typescriptMain.ts | 2 +- .../electron-browser/walkThrough.contribution.ts | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/extensions/typescript/src/typescriptMain.ts b/extensions/typescript/src/typescriptMain.ts index b806b6d1e13..24283c58a6c 100644 --- a/extensions/typescript/src/typescriptMain.ts +++ b/extensions/typescript/src/typescriptMain.ts @@ -9,7 +9,7 @@ * ------------------------------------------------------------------------------------------ */ 'use strict'; -import { env, languages, commands, workspace, window, Uri, ExtensionContext, Memento, IndentAction, Diagnostic, DiagnosticCollection, Range, DocumentFilter, Disposable } from 'vscode'; +import { env, languages, commands, workspace, window, ExtensionContext, Memento, IndentAction, Diagnostic, DiagnosticCollection, Range, DocumentFilter, Disposable } from 'vscode'; // This must be the first statement otherwise modules might got loaded with // the wrong locale. diff --git a/src/vs/workbench/parts/walkThrough/electron-browser/walkThrough.contribution.ts b/src/vs/workbench/parts/walkThrough/electron-browser/walkThrough.contribution.ts index c306eb61e9b..55033443bea 100644 --- a/src/vs/workbench/parts/walkThrough/electron-browser/walkThrough.contribution.ts +++ b/src/vs/workbench/parts/walkThrough/electron-browser/walkThrough.contribution.ts @@ -22,12 +22,12 @@ Registry.as(EditorExtensions.Editors) localize('walkThrough.editor.label', "Walk-Through"), 'vs/workbench/parts/walkThrough/electron-browser/walkThroughPart', 'WalkThroughPart'), - [new SyncDescriptor(WalkThroughInput)]); + [new SyncDescriptor(WalkThroughInput)]); Registry.as(Extensions.WorkbenchActions) .registerWorkbenchAction( - new SyncActionDescriptor(EditorWalkThroughAction, EditorWalkThroughAction.ID, EditorWalkThroughAction.LABEL), - 'Help: Editor Walk-Through', localize('help', "Help")); + new SyncActionDescriptor(EditorWalkThroughAction, EditorWalkThroughAction.ID, EditorWalkThroughAction.LABEL), + 'Help: Editor Walk-Through', localize('help', "Help")); Registry.as(WorkbenchExtensions.Workbench) .registerWorkbenchContribution(WalkThroughContentProvider);