mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-01 10:25:36 +00:00
Replace SignatureResponse and CommitEntity with Committer
A recent PR added CommitEntity but we already had SignatureResponse expressly for this purpose. So this commit renames SignatureResponse to Committer and removes CommitEntity and replaces it with Committer.
This commit is contained in:
@@ -12,7 +12,7 @@ namespace Octokit
|
||||
{
|
||||
public PullRequestCommit() { }
|
||||
|
||||
public PullRequestCommit(SignatureResponse author, Uri commentsUrl, Commit commit, SignatureResponse committer, Uri htmlUrl, IEnumerable<GitReference> parents, string sha, Uri url)
|
||||
public PullRequestCommit(Committer author, Uri commentsUrl, Commit commit, Committer committer, Uri htmlUrl, IEnumerable<GitReference> parents, string sha, Uri url)
|
||||
{
|
||||
Ensure.ArgumentNotNull(parents, "parents");
|
||||
|
||||
@@ -26,13 +26,13 @@ namespace Octokit
|
||||
Url = url;
|
||||
}
|
||||
|
||||
public SignatureResponse Author { get; protected set; }
|
||||
public Committer Author { get; protected set; }
|
||||
|
||||
public Uri CommentsUrl { get; protected set; }
|
||||
|
||||
public Commit Commit { get; protected set; }
|
||||
|
||||
public SignatureResponse Committer { get; protected set; }
|
||||
public Committer Committer { get; protected set; }
|
||||
|
||||
public Uri HtmlUrl { get; protected set; }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user