Skip to content

Commit

Permalink
Renamed PullRequestFile's *Uri properties to *Url
Browse files Browse the repository at this point in the history
  • Loading branch information
thedillonb committed Apr 26, 2015
1 parent e9918f8 commit 88e6c92
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 88e6c92

Please sign in to comment.