Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2sharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKeith Dahlby <dahlbyk@gmail.com>2013-02-19 19:55:57 +0400
committernulltoken <emeric.fermas@gmail.com>2013-03-18 00:17:29 +0400
commit678b2687ed5ae3b41bad53d906e32016694063a0 (patch)
tree158d2753710f5578dbdadf907a70a2eb0d5188e6 /LibGit2Sharp/BranchCollection.cs
parentb265bfc7f7679d35394eda07d0fe54c3eb383579 (diff)
Stop sorting collections
Diffstat (limited to 'LibGit2Sharp/BranchCollection.cs')
-rw-r--r--LibGit2Sharp/BranchCollection.cs1
1 files changed, 0 insertions, 1 deletions
diff --git a/LibGit2Sharp/BranchCollection.cs b/LibGit2Sharp/BranchCollection.cs
index 82f32918..01fb0a01 100644
--- a/LibGit2Sharp/BranchCollection.cs
+++ b/LibGit2Sharp/BranchCollection.cs
@@ -93,7 +93,6 @@ namespace LibGit2Sharp
{
return Proxy.git_branch_foreach(repo.Handle, GitBranchType.GIT_BRANCH_LOCAL | GitBranchType.GIT_BRANCH_REMOTE, branchToCanoncialName)
.Select(n => this[n])
- .OrderBy(b => b.CanonicalName, StringComparer.Ordinal)
.GetEnumerator();
}