File tree 2 files changed +3
-3
lines changed 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -830,7 +830,7 @@ public void CanIdentifyReferenceKind()
830
830
using ( var repo = new Repository ( path ) )
831
831
{
832
832
Assert . True ( repo . Refs [ "refs/heads/master" ] . IsLocalBranch ) ;
833
- Assert . True ( repo . Refs [ "refs/remotes/origin/master" ] . IsRemoteTrackingBranch ( ) ) ;
833
+ Assert . True ( repo . Refs [ "refs/remotes/origin/master" ] . IsRemoteTrackingBranch ) ;
834
834
Assert . True ( repo . Refs [ "refs/tags/lw" ] . IsTag ( ) ) ;
835
835
}
836
836
Original file line number Diff line number Diff line change @@ -96,9 +96,9 @@ public virtual bool IsLocalBranch
96
96
/// Determine if the current <see cref="Reference"/> is a remote tracking branch.
97
97
/// </summary>
98
98
/// <returns>true if the current <see cref="Reference"/> is a remote tracking branch, false otherwise.</returns>
99
- public virtual bool IsRemoteTrackingBranch ( )
99
+ public virtual bool IsRemoteTrackingBranch
100
100
{
101
- return CanonicalName . LooksLikeRemoteTrackingBranch ( ) ;
101
+ get { return CanonicalName . LooksLikeRemoteTrackingBranch ( ) ; }
102
102
}
103
103
104
104
/// <summary>
You can’t perform that action at this time.
0 commit comments