From 88e6c92bb21e28d57976cf47769a47ba35541efe Mon Sep 17 00:00:00 2001 From: Dillon Buchanan Date: Sun, 26 Apr 2015 10:20:36 -0400 Subject: [PATCH] Renamed PullRequestFile's *Uri properties to *Url --- Octokit/Models/Response/PullRequestFile.cs | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Octokit/Models/Response/PullRequestFile.cs b/Octokit/Models/Response/PullRequestFile.cs index 703a047748..efa978993d 100644 --- a/Octokit/Models/Response/PullRequestFile.cs +++ b/Octokit/Models/Response/PullRequestFile.cs @@ -14,7 +14,7 @@ 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; @@ -22,9 +22,9 @@ public PullRequestFile(string sha, string fileName, string status, int additions Additions = additions; Deletions = deletions; Changes = changes; - BlobUri = blobUri; - RawUri = rawUri; - ContentsUri = contentsUri; + BlobUrl = blobUrl; + RawUrl = rawUrl; + ContentsUrl = contentsUrl; Patch = patch; } @@ -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