File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -837,7 +837,7 @@ public void CanIdentifyReferenceKind()
837
837
path = SandboxBareTestRepo ( ) ;
838
838
using ( var repo = new Repository ( path ) )
839
839
{
840
- Assert . True ( repo . Refs [ "refs/notes/commits" ] . IsNote ( ) ) ;
840
+ Assert . True ( repo . Refs [ "refs/notes/commits" ] . IsNote ) ;
841
841
}
842
842
}
843
843
Original file line number Diff line number Diff line change @@ -114,9 +114,9 @@ public virtual bool IsTag
114
114
/// Determine if the current <see cref="Reference"/> is a note.
115
115
/// </summary>
116
116
/// <returns>true if the current <see cref="Reference"/> is a note, false otherwise.</returns>
117
- public virtual bool IsNote ( )
117
+ public virtual bool IsNote
118
118
{
119
- return CanonicalName . LooksLikeNote ( ) ;
119
+ get { return CanonicalName . LooksLikeNote ( ) ; }
120
120
}
121
121
122
122
/// <summary>
You can’t perform that action at this time.
0 commit comments