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>2014-04-15 12:34:47 +0400
committernulltoken <emeric.fermas@gmail.com>2014-04-15 12:34:47 +0400
commit35ea14dd55582ba1dc4a8ad98e77ae656ee307e9 (patch)
tree4403b39732af96d7ee6664e458dcd64d1d1b6aa8 /LibGit2Sharp/IQueryableCommitLog.cs
parentcccecb2a5eddcb9e952cfd8be545396312ee24d5 (diff)
Drop obsolete members after release v0.17.0
Diffstat (limited to 'LibGit2Sharp/IQueryableCommitLog.cs')
-rw-r--r--LibGit2Sharp/IQueryableCommitLog.cs20
1 files changed, 1 insertions, 19 deletions
diff --git a/LibGit2Sharp/IQueryableCommitLog.cs b/LibGit2Sharp/IQueryableCommitLog.cs
index d73a4307..7642d412 100644
--- a/LibGit2Sharp/IQueryableCommitLog.cs
+++ b/LibGit2Sharp/IQueryableCommitLog.cs
@@ -1,5 +1,4 @@
-using System;
-using System.Collections.Generic;
+using System.Collections.Generic;
namespace LibGit2Sharp
{
@@ -16,23 +15,6 @@ namespace LibGit2Sharp
ICommitLog QueryBy(CommitFilter filter);
/// <summary>
- /// Find the best possible common ancestor given two <see cref="Commit"/>s.
- /// </summary>
- /// <param name="first">The first <see cref="Commit"/>.</param>
- /// <param name="second">The second <see cref="Commit"/>.</param>
- /// <returns>The common ancestor or null if none found.</returns>
- [Obsolete("This method will be removed in the next release. Please use FindMergeBase(Commit, Commit).")]
- Commit FindCommonAncestor(Commit first, Commit second);
-
- /// <summary>
- /// Find the best possible common ancestor given two or more <see cref="Commit"/>s.
- /// </summary>
- /// <param name="commits">The <see cref="Commit"/> for which to find the common ancestor.</param>
- /// <returns>The common ancestor or null if none found.</returns>
- [Obsolete("This method will be removed in the next release. Please use FindMergeBase(IEnumerable<Commit>, MergeBaseFindingStrategy).")]
- Commit FindCommonAncestor(IEnumerable<Commit> commits);
-
- /// <summary>
/// Find the best possible merge base given two <see cref="Commit"/>s.
/// </summary>
/// <param name="first">The first <see cref="Commit"/>.</param>