Skip to content
This repository was archived by the owner on Jun 21, 2023. It is now read-only.

Commit 0bb882a

Browse files
committed
Call extension method as extension method.
1 parent 0bcde3a commit 0bb882a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/GitHub.TeamFoundation.14/Services/VSGitExt.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ void CheckAndUpdate(object sender, System.ComponentModel.PropertyChangedEventArg
3333
ActiveRepositoriesChanged?.Invoke();
3434
}
3535

36-
public IEnumerable<ILocalRepositoryModel> ActiveRepositories => gitService?.ActiveRepositories.Select(x => IGitRepositoryInfoExtensions.ToModel(x));
36+
public IEnumerable<ILocalRepositoryModel> ActiveRepositories => gitService?.ActiveRepositories.Select(x => x.ToModel());
3737
public event Action ActiveRepositoriesChanged;
3838
}
3939
}

0 commit comments

Comments
 (0)