Clean up GHObject field access

This commit is contained in:
Liam Newman
2020-05-19 17:04:48 -07:00
parent 2949a2e0ff
commit afc02faeda
25 changed files with 72 additions and 53 deletions

View File

@@ -149,6 +149,6 @@ public class GHIssueComment extends GHObject implements Reactable {
private String getApiRoute() {
return "/repos/" + owner.getRepository().getOwnerName() + "/" + owner.getRepository().getName()
+ "/issues/comments/" + id;
+ "/issues/comments/" + getId();
}
}