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/Note.cs
parent7e815c6dd19b2cedec59c498eadea70502fce437 (diff)
Use params for LambdaEqualityHelper
Diffstat (limited to 'LibGit2Sharp/Note.cs')
-rw-r--r--LibGit2Sharp/Note.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/LibGit2Sharp/Note.cs b/LibGit2Sharp/Note.cs
index 580aa2ea..78621e39 100644
--- a/LibGit2Sharp/Note.cs
+++ b/LibGit2Sharp/Note.cs
@@ -53,7 +53,7 @@ namespace LibGit2Sharp
}
private static readonly LambdaEqualityHelper<Note> equalityHelper =
- new LambdaEqualityHelper<Note>(new Func<Note, object>[] { x => x.BlobId, x => x.TargetObjectId, x => x.Namespace });
+ new LambdaEqualityHelper<Note>(x => x.BlobId, x => x.TargetObjectId, x => x.Namespace);
/// <summary>
/// Determines whether the specified <see cref = "Object" /> is equal to the current <see cref = "Note" />.