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>2012-10-20 22:08:54 +0400
committernulltoken <emeric.fermas@gmail.com>2012-10-24 22:03:38 +0400
commit862f0e946c7d7efa33db688d90b07bb2682009cf (patch)
tree0d63a55e155c876e2e4d8b8f359fe8f09daf7e1e /LibGit2Sharp/Reference.cs
parent7e815c6dd19b2cedec59c498eadea70502fce437 (diff)
Use params for LambdaEqualityHelper
Diffstat (limited to 'LibGit2Sharp/Reference.cs')
-rw-r--r--LibGit2Sharp/Reference.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/LibGit2Sharp/Reference.cs b/LibGit2Sharp/Reference.cs
index 68997841..415a9b33 100644
--- a/LibGit2Sharp/Reference.cs
+++ b/LibGit2Sharp/Reference.cs
@@ -12,7 +12,7 @@ namespace LibGit2Sharp
public abstract class Reference : IEquatable<Reference>
{
private static readonly LambdaEqualityHelper<Reference> equalityHelper =
- new LambdaEqualityHelper<Reference>(new Func<Reference, object>[] { x => x.CanonicalName, x => x.TargetIdentifier });
+ new LambdaEqualityHelper<Reference>(x => x.CanonicalName, x => x.TargetIdentifier);
/// <summary>
/// Gets the full name of this reference.