Skip to content

Commit 1061def

Browse files
committed
Fix missing IEquatable declarations
1 parent 1cc0824 commit 1061def

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

LibGit2Sharp/Note.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ namespace LibGit2Sharp
77
/// <summary>
88
/// A note, attached to a given <see cref = "GitObject"/>.
99
/// </summary>
10-
public class Note
10+
public class Note : IEquatable<Note>
1111
{
1212
private Note(ObjectId blobId, string message, ObjectId targetObjectId, string @namespace)
1313
{

LibGit2Sharp/TreeEntryDefinition.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ namespace LibGit2Sharp
77
/// <summary>
88
/// Holds the meta data of a <see cref = "TreeEntry" />.
99
/// </summary>
10-
public class TreeEntryDefinition
10+
public class TreeEntryDefinition : IEquatable<TreeEntryDefinition>
1111
{
1212
private Lazy<GitObject> target;
1313

0 commit comments

Comments
 (0)