🐛 remove withScmProgress from proposed

fixes #24009
This commit is contained in:
Joao Moreno
2017-04-06 11:31:42 +02:00
parent b2b9822bc9
commit 4c5030a343

View File

@@ -346,9 +346,9 @@ export function createApiFactory(
withWindowProgress: proposedApiFunction(extension, <R>(title: string, task: (progress: vscode.Progress<string>, token: vscode.CancellationToken) => Thenable<R>): Thenable<R> => {
return extHostProgress.withWindowProgress(extension, title, task);
}),
withScmProgress: proposedApiFunction(extension, <R>(task: (progress: vscode.Progress<number>) => Thenable<R>) => {
withScmProgress<R>(task: (progress: vscode.Progress<number>) => Thenable<R>) {
return extHostProgress.withScmProgress(extension, task);
}),
},
createOutputChannel(name: string): vscode.OutputChannel {
return extHostOutputService.createOutputChannel(name);
},