From 6ad1192abd67ec7920268053bf1633b743fa1625 Mon Sep 17 00:00:00 2001 From: Gabriel Weyer Date: Thu, 21 Nov 2013 11:20:10 +1100 Subject: [PATCH] Removed _links field from review comment --- .../Response/PullRequestReviewComment.cs | 28 ------------------- 1 file changed, 28 deletions(-) diff --git a/Octokit/Models/Response/PullRequestReviewComment.cs b/Octokit/Models/Response/PullRequestReviewComment.cs index 734be9f2..14807e07 100644 --- a/Octokit/Models/Response/PullRequestReviewComment.cs +++ b/Octokit/Models/Response/PullRequestReviewComment.cs @@ -73,34 +73,6 @@ namespace Octokit /// The URL for the pull request via the API. /// public Uri PullRequestUrl { get; set; } - - /// - /// Contains Url, HtmlUrl and PullRequestUrl - /// - public PullRequestReviewCommentLinks Links { get; set; } - } - - public class PullRequestReviewCommentLinks - { - /// - /// URL of the comment via the API. - /// - public PullRequestReviewCommentLink Self { get; set; } - - /// - /// The URL for this comment on Github.com - /// - public PullRequestReviewCommentLink Html { get; set; } - - /// - /// The URL for the pull request via the API. - /// - public PullRequestReviewCommentLink PullRequest { get; set; } - } - - public class PullRequestReviewCommentLink - { - public Uri Href { get; set; } } public enum PullRequestReviewCommentSort