Skip to content

Commit

Permalink
Merge pull request #789 from thedillonb/fix-pull-request-file-uri-vs-…
Browse files Browse the repository at this point in the history
…url-properties

Renamed PullRequestFile's *Uri properties to *Url
  • Loading branch information
haacked committed Apr 26, 2015
2 parents e9918f8 + 88e6c92 commit 6854825
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions Octokit/Models/Response/PullRequestFile.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,17 @@ public class PullRequestFile
{
public PullRequestFile() { }

public PullRequestFile(string sha, string fileName, string status, int additions, int deletions, int changes, Uri blobUri, Uri rawUri, Uri contentsUri, string patch)
public PullRequestFile(string sha, string fileName, string status, int additions, int deletions, int changes, Uri blobUrl, Uri rawUrl, Uri contentsUrl, string patch)
{
Sha = sha;
FileName = fileName;
Status = status;
Additions = additions;
Deletions = deletions;
Changes = changes;
BlobUri = blobUri;
RawUri = rawUri;
ContentsUri = contentsUri;
BlobUrl = blobUrl;
RawUrl = rawUrl;
ContentsUrl = contentsUrl;
Patch = patch;
}

Expand All @@ -35,9 +35,9 @@ public PullRequestFile(string sha, string fileName, string status, int additions
public int Additions { get; protected set; }
public int Deletions { get; protected set; }
public int Changes { get; protected set; }
public Uri BlobUri { get; protected set; }
public Uri RawUri { get; protected set; }
public Uri ContentsUri { get; protected set; }
public Uri BlobUrl { get; protected set; }
public Uri RawUrl { get; protected set; }
public Uri ContentsUrl { get; protected set; }
public string Patch { get; protected set; }

internal string DebuggerDisplay
Expand Down

0 comments on commit 6854825

Please sign in to comment.