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 <dahlbyk@gmail.com>2013-07-23 01:54:48 +0400
committernulltoken <emeric.fermas@gmail.com>2013-08-03 22:21:36 +0400
commit4b48c2ced408442ca8fccf97d2b27dc31d1d2ee4 (patch)
tree78b738cd0cecd9fac04844268b56a49e3b2e42c5 /LibGit2Sharp/IRepository.cs
parent3c03b9fb4360c510e391572f583270d3cf4c6db0 (diff)
Remove obsolete members after 0.13 release
Diffstat (limited to 'LibGit2Sharp/IRepository.cs')
-rw-r--r--LibGit2Sharp/IRepository.cs41
1 files changed, 0 insertions, 41 deletions
diff --git a/LibGit2Sharp/IRepository.cs b/LibGit2Sharp/IRepository.cs
index b011a4da..a498c4e9 100644
--- a/LibGit2Sharp/IRepository.cs
+++ b/LibGit2Sharp/IRepository.cs
@@ -78,20 +78,6 @@ namespace LibGit2Sharp
/// </para>
/// </summary>
/// <param name="branch">The <see cref="Branch"/> to check out.</param>
- /// <param name="checkoutOptions"><see cref="CheckoutOptions"/> controlling checkout behavior.</param>
- /// <param name="onCheckoutProgress"><see cref="CheckoutProgressHandler"/> that checkout progress is reported through.</param>
- /// <returns>The <see cref="Branch"/> that was checked out.</returns>
- [Obsolete("This method will be removed in the next release. Please use Checkout(Branch, CheckoutModifiers, CheckoutProgressHandler, CheckoutNotificationOptions) instead.")]
- Branch Checkout(Branch branch, CheckoutOptions checkoutOptions, CheckoutProgressHandler onCheckoutProgress);
-
- /// <summary>
- /// Checkout the commit pointed at by the tip of the specified <see cref="Branch"/>.
- /// <para>
- /// If this commit is the current tip of the branch as it exists in the repository, the HEAD
- /// will point to this branch. Otherwise, the HEAD will be detached, pointing at the commit sha.
- /// </para>
- /// </summary>
- /// <param name="branch">The <see cref="Branch"/> to check out.</param>
/// <param name="checkoutModifiers"><see cref="CheckoutModifiers"/> controlling checkout behavior.</param>
/// <param name="onCheckoutProgress"><see cref="CheckoutProgressHandler"/> that checkout progress is reported through.</param>
/// <param name="checkoutNotificationOptions"><see cref="CheckoutNotificationOptions"/> to manage checkout notifications.</param>
@@ -106,20 +92,6 @@ namespace LibGit2Sharp
/// </para>
/// </summary>
/// <param name="committishOrBranchSpec">A revparse spec for the commit or branch to checkout.</param>
- /// <param name="checkoutOptions">Options controlling checkout behavior.</param>
- /// <param name="onCheckoutProgress">Callback method to report checkout progress updates through.</param>
- /// <returns>The <see cref="Branch"/> that was checked out.</returns>
- [Obsolete("This method will be removed in the next release. Please use Checkout(string, CheckoutModifiers, CheckoutProgressHandler, CheckoutNotificationOptions) instead.")]
- Branch Checkout(string committishOrBranchSpec, CheckoutOptions checkoutOptions, CheckoutProgressHandler onCheckoutProgress);
-
- /// <summary>
- /// Checkout the specified branch, reference or SHA.
- /// <para>
- /// If the committishOrBranchSpec parameter resolves to a branch name, then the checked out HEAD will
- /// will point to the branch. Otherwise, the HEAD will be detached, pointing at the commit sha.
- /// </para>
- /// </summary>
- /// <param name="committishOrBranchSpec">A revparse spec for the commit or branch to checkout.</param>
/// <param name="checkoutModifiers">Options controlling checkout behavior.</param>
/// <param name="onCheckoutProgress">Callback method to report checkout progress updates through.</param>
/// <param name="checkoutNotificationOptions"><see cref="CheckoutNotificationOptions"/> to manage checkout notifications.</param>
@@ -127,19 +99,6 @@ namespace LibGit2Sharp
Branch Checkout(string committishOrBranchSpec, CheckoutModifiers checkoutModifiers, CheckoutProgressHandler onCheckoutProgress, CheckoutNotificationOptions checkoutNotificationOptions);
/// <summary>
- /// Checkout the specified <see cref="LibGit2Sharp.Commit"/>.
- /// <para>
- /// Will detach the HEAD and make it point to this commit sha.
- /// </para>
- /// </summary>
- /// <param name="commit">The <see cref="LibGit2Sharp.Commit"/> to check out.</param>
- /// <param name="checkoutOptions"><see cref="CheckoutOptions"/> controlling checkout behavior.</param>
- /// <param name="onCheckoutProgress"><see cref="CheckoutProgressHandler"/> that checkout progress is reported through.</param>
- /// <returns>The <see cref="Branch"/> that was checked out.</returns>
- [Obsolete("This method will be removed in the next release. Please use Checkout(Commit, CheckoutModifiers, CheckoutProgressHandler, CheckoutNotificationOptions) instead.")]
- Branch Checkout(Commit commit, CheckoutOptions checkoutOptions, CheckoutProgressHandler onCheckoutProgress);
-
- /// <summary>
/// Checkout the specified <see cref="Commit"/>.
/// <para>
/// Will detach the HEAD and make it point to this commit sha.