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 },