Skip to content

Commit

Permalink
Fix missing IEquatable declarations
Browse files Browse the repository at this point in the history
  • Loading branch information
yorah committed Jun 19, 2012
1 parent 1cc0824 commit 1061def
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion LibGit2Sharp/Note.cs
Expand Up @@ -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)
{
Expand Down
2 changes: 1 addition & 1 deletion LibGit2Sharp/TreeEntryDefinition.cs
Expand Up @@ -7,7 +7,7 @@ namespace LibGit2Sharp
/// <summary>
/// Holds the meta data of a <see cref = "TreeEntry" />.
/// </summary>
public class TreeEntryDefinition
public class TreeEntryDefinition : IEquatable<TreeEntryDefinition>
{
private Lazy<GitObject> target;

Expand Down

0 comments on commit 1061def

Please sign in to comment.