Make root field transient in all classes

This commit is contained in:
Liam Newman
2020-12-17 03:32:46 -08:00
parent fafb23c1a6
commit 70ba4df385
61 changed files with 117 additions and 155 deletions

View File

@@ -10,11 +10,10 @@ import java.util.Date;
* @see GHRepository#getSubscription() GHRepository#getSubscription()
* @see GHThread#getSubscription() GHThread#getSubscription()
*/
public class GHSubscription {
public class GHSubscription extends GitHubInteractiveObject {
private String created_at, url, repository_url, reason;
private boolean subscribed, ignored;
private GitHub root;
private GHRepository repo;
/**