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:
authornulltoken <emeric.fermas@gmail.com>2013-12-24 13:13:04 +0400
committernulltoken <emeric.fermas@gmail.com>2013-12-24 13:13:04 +0400
commit2ff661ac2ff4fe9d0b6c68e3acb5942cfa50130a (patch)
tree7bf48ecb05572999684a63086c02b2f53c1f5390 /LibGit2Sharp/Repository.cs
parentd71ccce9032209719b8dc6d2f8e486c4e9c3813e (diff)
Drop obsolete members after release v0.15.0
Diffstat (limited to 'LibGit2Sharp/Repository.cs')
-rw-r--r--LibGit2Sharp/Repository.cs12
1 files changed, 0 insertions, 12 deletions
diff --git a/LibGit2Sharp/Repository.cs b/LibGit2Sharp/Repository.cs
index b3df311f..33f9d795 100644
--- a/LibGit2Sharp/Repository.cs
+++ b/LibGit2Sharp/Repository.cs
@@ -799,18 +799,6 @@ namespace LibGit2Sharp
/// Sets the current <see cref="Head"/> to the specified commit and optionally resets the <see cref="Index"/> and
/// the content of the working tree to match.
/// </summary>
- /// <param name="resetOptions">Flavor of reset operation to perform.</param>
- /// <param name="commit">The target commit object.</param>
- [Obsolete("This method will be removed in the next release. Please use Reset(ResetMode, Commit) instead.")]
- public void Reset(ResetOptions resetOptions, Commit commit)
- {
- Reset((ResetMode)resetOptions, commit);
- }
-
- /// <summary>
- /// Sets the current <see cref="Head"/> to the specified commit and optionally resets the <see cref="Index"/> and
- /// the content of the working tree to match.
- /// </summary>
/// <param name="resetMode">Flavor of reset operation to perform.</param>
/// <param name="commit">The target commit object.</param>
public void Reset(ResetMode resetMode, Commit commit)