From 4c5030a343f6934912d2eff375f87b8cf2f2ea3f Mon Sep 17 00:00:00 2001 From: Joao Moreno Date: Thu, 6 Apr 2017 11:31:42 +0200 Subject: [PATCH] :bug: remove withScmProgress from proposed fixes #24009 --- src/vs/workbench/api/node/extHost.api.impl.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/vs/workbench/api/node/extHost.api.impl.ts b/src/vs/workbench/api/node/extHost.api.impl.ts index 53af0ff3782..548a6168d75 100644 --- a/src/vs/workbench/api/node/extHost.api.impl.ts +++ b/src/vs/workbench/api/node/extHost.api.impl.ts @@ -346,9 +346,9 @@ export function createApiFactory( withWindowProgress: proposedApiFunction(extension, (title: string, task: (progress: vscode.Progress, token: vscode.CancellationToken) => Thenable): Thenable => { return extHostProgress.withWindowProgress(extension, title, task); }), - withScmProgress: proposedApiFunction(extension, (task: (progress: vscode.Progress) => Thenable) => { + withScmProgress(task: (progress: vscode.Progress) => Thenable) { return extHostProgress.withScmProgress(extension, task); - }), + }, createOutputChannel(name: string): vscode.OutputChannel { return extHostOutputService.createOutputChannel(name); }, -- GitLab