Browse Source

Fixes decorator

main
Eric Amodio 2 years ago
parent
commit
15e4f478c3
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/git/providers/localGitProvider.ts

+ 1
- 1
src/git/providers/localGitProvider.ts View File

@ -3392,7 +3392,7 @@ export class LocalGitProvider implements GitProvider, Disposable {
return repository.hasUpstreamBranch(); return repository.hasUpstreamBranch();
} }
@log<GitProviderService['isActiveRepoPath']>({
@log<LocalGitProvider['isActiveRepoPath']>({
args: { 1: e => (e != null ? `TextEditor(${Logger.toLoggable(e.document.uri)})` : undefined) }, args: { 1: e => (e != null ? `TextEditor(${Logger.toLoggable(e.document.uri)})` : undefined) },
}) })
async isActiveRepoPath(repoPath: string | undefined, editor?: TextEditor): Promise<boolean> { async isActiveRepoPath(repoPath: string | undefined, editor?: TextEditor): Promise<boolean> {

Loading…
Cancel
Save