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:
authoryorah <yoram.harmelin@gmail.com>2012-06-19 14:04:04 +0400
committeryorah <yoram.harmelin@gmail.com>2012-06-19 14:04:04 +0400
commit1061def8c152ee52a846c973e9fb035bd80c7941 (patch)
tree60a0330acb9045fa2c2a123728df11836cb38aca /LibGit2Sharp/Note.cs
parent1cc0824b324943571c718b685967cfb092bb8e19 (diff)
Fix missing IEquatable declarations
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 6ec864b3..a055a449 100644
--- a/LibGit2Sharp/Note.cs
+++ b/LibGit2Sharp/Note.cs
@@ -7,7 +7,7 @@ namespace LibGit2Sharp
/// <summary>
/// A note, attached to a given <see cref = "GitObject"/>.
/// </summary>
- public class Note
+ public class Note : IEquatable<Note>
{
private Note(ObjectId blobId, string message, ObjectId targetObjectId, string @namespace)
{