Ver código fonte

Fixes decorator order

main
Eric Amodio 2 anos atrás
pai
commit
a1f38ba28a
2 arquivos alterados com 2 adições e 2 exclusões
  1. +1
    -1
      src/git/gitProviderService.ts
  2. +1
    -1
      src/git/providers/localGitProvider.ts

+ 1
- 1
src/git/gitProviderService.ts Ver arquivo

@ -993,8 +993,8 @@ export class GitProviderService implements Disposable {
return provider.getContributors(path, options);
}
@log()
@gate()
@log()
async getCurrentUser(repoPath: string | Uri): Promise<GitUser | undefined> {
const { provider, path } = this.getProvider(repoPath);
return provider.getCurrentUser(path);

+ 1
- 1
src/git/providers/localGitProvider.ts Ver arquivo

@ -1253,8 +1253,8 @@ export class LocalGitProvider implements GitProvider, Disposable {
return contributors;
}
@log()
@gate()
@log()
async getCurrentUser(repoPath: string): Promise<GitUser | undefined> {
let user = this._userMapCache.get(repoPath);
if (user != null) return user;

Carregando…
Cancelar
Salvar