File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed
src/GitVersion.LibGit2Sharp/Git Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -7,9 +7,9 @@ internal sealed class BranchCollection : IBranchCollection
7
7
{
8
8
private readonly LibGit2Sharp . BranchCollection innerCollection ;
9
9
private readonly Lazy < IReadOnlyCollection < IBranch > > branches ;
10
- private readonly LibGit2Sharp . Diff diff ;
10
+ private readonly Diff diff ;
11
11
12
- internal BranchCollection ( LibGit2Sharp . BranchCollection collection , LibGit2Sharp . Diff diff )
12
+ internal BranchCollection ( LibGit2Sharp . BranchCollection collection , Diff diff )
13
13
{
14
14
this . innerCollection = collection . NotNull ( ) ;
15
15
this . branches = new Lazy < IReadOnlyCollection < IBranch > > ( ( ) => [ .. this . innerCollection . Select ( branch => new Branch ( branch , diff ) ) ] ) ;
Original file line number Diff line number Diff line change @@ -7,9 +7,9 @@ internal sealed class CommitCollection : ICommitCollection
7
7
{
8
8
private readonly ICommitLog innerCollection ;
9
9
private readonly Lazy < IReadOnlyCollection < ICommit > > commits ;
10
- private readonly LibGit2Sharp . Diff diff ;
10
+ private readonly Diff diff ;
11
11
12
- internal CommitCollection ( ICommitLog collection , LibGit2Sharp . Diff diff )
12
+ internal CommitCollection ( ICommitLog collection , Diff diff )
13
13
{
14
14
this . innerCollection = collection . NotNull ( ) ;
15
15
this . commits = new Lazy < IReadOnlyCollection < ICommit > > ( ( ) => [ .. this . innerCollection . Select ( commit => new Commit ( commit , diff ) ) ] ) ;
Original file line number Diff line number Diff line change @@ -9,10 +9,10 @@ internal sealed class Tag : ITag
9
9
private static readonly LambdaEqualityHelper < ITag > equalityHelper = new ( x => x . Name . Canonical ) ;
10
10
private static readonly LambdaKeyComparer < ITag , string > comparerHelper = new ( x => x . Name . Canonical ) ;
11
11
private readonly LibGit2Sharp . Tag innerTag ;
12
- private readonly LibGit2Sharp . Diff diff ;
12
+ private readonly Diff diff ;
13
13
private readonly Lazy < ICommit ? > commitLazy ;
14
14
15
- internal Tag ( LibGit2Sharp . Tag tag , LibGit2Sharp . Diff diff )
15
+ internal Tag ( LibGit2Sharp . Tag tag , Diff diff )
16
16
{
17
17
this . innerTag = tag . NotNull ( ) ;
18
18
this . commitLazy = new ( PeeledTargetCommit ) ;
You can’t perform that action at this time.
0 commit comments