We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81a843f commit bcbe197Copy full SHA for bcbe197
src/GitVersion.LibGit2Sharp/Git/BranchCollection.cs
@@ -12,7 +12,7 @@ internal sealed class BranchCollection : IBranchCollection
12
internal BranchCollection(LibGit2Sharp.BranchCollection collection, LibGit2Sharp.Diff diff)
13
{
14
this.innerCollection = collection.NotNull();
15
-this.branches = new Lazy<IReadOnlyCollection<IBranch>>(() => [.. this.innerCollection.Select(branch => new Branch(branch, diff))]);
+ this.branches = new Lazy<IReadOnlyCollection<IBranch>>(() => [.. this.innerCollection.Select(branch => new Branch(branch, diff))]);
16
this.diff = diff.NotNull();
17
}
18
0 commit comments