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:
authorKeith Dahlby <kdahlby@jpcycles.com>2012-03-02 20:25:59 +0400
committerKeith Dahlby <kdahlby@jpcycles.com>2012-03-02 20:25:59 +0400
commitb2b187b0633e767de1bb8f20fdc63ba4152dd5c7 (patch)
tree385d4da463c7bd7fc965d1390835ab7b9bd23a06 /LibGit2Sharp
parent3e9348985d071912f0dfca41ea03251fe74093ef (diff)
Remove redundant Branch.ToString() override
Diffstat (limited to 'LibGit2Sharp')
-rw-r--r--LibGit2Sharp/Branch.cs9
1 files changed, 0 insertions, 9 deletions
diff --git a/LibGit2Sharp/Branch.cs b/LibGit2Sharp/Branch.cs
index f5e86de2..0160af40 100644
--- a/LibGit2Sharp/Branch.cs
+++ b/LibGit2Sharp/Branch.cs
@@ -242,14 +242,5 @@ namespace LibGit2Sharp
{
return !Equals(left, right);
}
-
- /// <summary>
- /// Returns the <see cref = "NamedReference{TObject}.CanonicalName" />, a <see cref = "String" /> representation of the current <see cref = "Branch" />.
- /// </summary>
- /// <returns>The <see cref = "NamedReference{TObject}.CanonicalName" /> that represents the current <see cref = "Branch" />.</returns>
- public override string ToString()
- {
- return CanonicalName;
- }
}
}