diff --git a/src/vs/workbench/api/node/extHost.api.impl.ts b/src/vs/workbench/api/node/extHost.api.impl.ts index 53af0ff3782d01d716077e4f3396ad20e482a475..548a6168d75656ca398358a9f992d27ae99abe16 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); },