Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Removed obsoleted methods from MockQueryableCommitLog
  • Loading branch information
asbjornu committed Sep 22, 2017
commit 59c3aa2cab39643a21d2805677b855756008708a
16 changes: 0 additions & 16 deletions src/GitVersionCore.Tests/Mocks/MockQueryableCommitLog.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,22 +37,6 @@ public IEnumerable<LogEntry> QueryBy(string path)
throw new NotImplementedException();
}

#pragma warning disable CS0618 // Type or member is obsolete
public IEnumerable<LogEntry> QueryBy(string path, FollowFilter filter)
#pragma warning restore CS0618 // Type or member is obsolete
{
throw new NotImplementedException();
}

public Commit FindMergeBase(Commit first, Commit second)
{
return null;
}

public Commit FindMergeBase(IEnumerable<Commit> commits, MergeBaseFindingStrategy strategy)
{
throw new NotImplementedException();
}

public IEnumerable<LogEntry> QueryBy(string path, CommitFilter filter)
{
Expand Down