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-09-10 01:40:46 +0400
committernulltoken <emeric.fermas@gmail.com>2013-09-10 01:41:44 +0400
commit936407f5a04983c85c02c563afe931de35328c69 (patch)
treec83c73d7a46405a57fbf9921326a62916018ec5c /LibGit2Sharp/IRepository.cs
parent72585f5e4ef134e00d6d5bcbd19870574026b893 (diff)
Drop obsolete members after release v0.14
Diffstat (limited to 'LibGit2Sharp/IRepository.cs')
-rw-r--r--LibGit2Sharp/IRepository.cs14
1 files changed, 0 insertions, 14 deletions
diff --git a/LibGit2Sharp/IRepository.cs b/LibGit2Sharp/IRepository.cs
index cb617a13..763b7bbf 100644
--- a/LibGit2Sharp/IRepository.cs
+++ b/LibGit2Sharp/IRepository.cs
@@ -112,20 +112,6 @@ namespace LibGit2Sharp
Branch Checkout(Commit commit, CheckoutModifiers checkoutModifiers, CheckoutProgressHandler onCheckoutProgress, CheckoutNotificationOptions checkoutNotificationOptions);
/// <summary>
- /// Checkout files from the specified branch, reference or SHA.
- /// <para>
- /// This method does not switch branches or update the current repository HEAD.
- /// </para>
- /// </summary>
- /// <param name="committishOrBranchSpec">A revparse spec for the commit or branch to checkout paths from.</param>
- /// <param name="paths">The paths to checkout.</param>
- /// <param name="checkoutOptions">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>
- [Obsolete("This method will be removed in the next release. Please use CheckoutPaths(string, IEnumerable<string>, CheckoutOptions) instead.")]
- void CheckoutPaths(string committishOrBranchSpec, IList<string> paths, CheckoutModifiers checkoutOptions, CheckoutProgressHandler onCheckoutProgress, CheckoutNotificationOptions checkoutNotificationOptions);
-
- /// <summary>
/// Updates specifed paths in the index and working directory with the versions from the specified branch, reference, or SHA.
/// <para>
/// This method does not switch branches or update the current repository HEAD.