From 7825db30d064fb32a82275b832649206092a7509 Mon Sep 17 00:00:00 2001 From: Eric Amodio Date: Sun, 30 Jan 2022 03:35:06 -0500 Subject: [PATCH] Removes useless async --- src/git/gitProviderService.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/git/gitProviderService.ts b/src/git/gitProviderService.ts index 9196754..1d7921d 100644 --- a/src/git/gitProviderService.ts +++ b/src/git/gitProviderService.ts @@ -1032,19 +1032,19 @@ export class GitProviderService implements Disposable { } @log() - async getChangedFilesCount(repoPath: string | Uri, ref?: string): Promise { + getChangedFilesCount(repoPath: string | Uri, ref?: string): Promise { const { provider, path } = this.getProvider(repoPath); return provider.getChangedFilesCount(path, ref); } @log() - async getCommit(repoPath: string | Uri, ref: string): Promise { + getCommit(repoPath: string | Uri, ref: string): Promise { const { provider, path } = this.getProvider(repoPath); return provider.getCommit(path, ref); } @log() - async getCommitBranches( + getCommitBranches( repoPath: string | Uri, ref: string, options?: { mode?: 'contains' | 'pointsAt'; remotes?: boolean },