Update clients

This commit is contained in:
Henrik Andersson
2015-03-24 00:11:52 +10:00
parent b0ab485ed1
commit 78e76be7d9
34 changed files with 72 additions and 72 deletions
@@ -40,9 +40,9 @@ namespace Octokit
/// <param name="owner">The owner of the repository</param>
/// <param name="name">The name of the repository</param>
/// <returns>The list of <see cref="PullRequestReviewComment"/>s for the specified repository</returns>
public Task<IReadOnlyList<PullRequestReviewComment>> GetForRepository(string owner, string name)
public Task<IReadOnlyList<PullRequestReviewComment>> GetAllForRepository(string owner, string name)
{
return GetForRepository(owner, name, new PullRequestReviewCommentRequest());
return GetAllForRepository(owner, name, new PullRequestReviewCommentRequest());
}
/// <summary>
@@ -53,7 +53,7 @@ namespace Octokit
/// <param name="name">The name of the repository</param>
/// <param name="request">The sorting <see cref="PullRequestReviewCommentRequest">parameters</see></param>
/// <returns>The list of <see cref="PullRequestReviewComment"/>s for the specified repository</returns>
public Task<IReadOnlyList<PullRequestReviewComment>> GetForRepository(string owner, string name, PullRequestReviewCommentRequest request)
public Task<IReadOnlyList<PullRequestReviewComment>> GetAllForRepository(string owner, string name, PullRequestReviewCommentRequest request)
{
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
Ensure.ArgumentNotNullOrEmptyString(name, "name");