Skip to content

Commit

Permalink
🐛 remove withScmProgress from proposed
Browse files Browse the repository at this point in the history
fixes #24009
  • Loading branch information
joaomoreno committed Apr 6, 2017
1 parent b2b9822 commit 4c5030a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/vs/workbench/api/node/extHost.api.impl.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
},
Expand Down

0 comments on commit 4c5030a

Please sign in to comment.