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/Repository.cs
parent72585f5e4ef134e00d6d5bcbd19870574026b893 (diff)
Drop obsolete members after release v0.14
Diffstat (limited to 'LibGit2Sharp/Repository.cs')
-rw-r--r--LibGit2Sharp/Repository.cs24
1 files changed, 0 insertions, 24 deletions
diff --git a/LibGit2Sharp/Repository.cs b/LibGit2Sharp/Repository.cs
index d860e23b..3ec3def4 100644
--- a/LibGit2Sharp/Repository.cs
+++ b/LibGit2Sharp/Repository.cs
@@ -813,30 +813,6 @@ namespace LibGit2Sharp
/// 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.")]
- public void CheckoutPaths(string committishOrBranchSpec, IList<string> paths, CheckoutModifiers checkoutOptions, CheckoutProgressHandler onCheckoutProgress, CheckoutNotificationOptions checkoutNotificationOptions)
- {
- var opts = new CheckoutOptions
- {
- CheckoutModifiers = checkoutOptions,
- OnCheckoutProgress = onCheckoutProgress,
- CheckoutNotificationOptions = checkoutNotificationOptions
- };
-
- CheckoutPaths(committishOrBranchSpec, paths, opts);
- }
-
- /// <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.
- /// </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. Will throw if null is passed in. Passing an empty enumeration results in nothing being checked out.</param>
/// <param name="checkoutOptions">Collection of parameters controlling checkout behavior.</param>