diff --git a/src/main/java/org/kohsuke/github/GHProjectCard.java b/src/main/java/org/kohsuke/github/GHProjectCard.java index dd65a23676..231e47d0f6 100644 --- a/src/main/java/org/kohsuke/github/GHProjectCard.java +++ b/src/main/java/org/kohsuke/github/GHProjectCard.java @@ -131,8 +131,9 @@ public GHIssue getContent() throws IOException { } else { issue = root().createRequest().withUrlPath(getContentUrl().getPath()).fetch(GHIssue.class); } - GHRepository repository = - root().createRequest().withUrlPath(issue.getRepositoryUrlPath()).fetch(GHRepository.class); + GHRepository repository = root().createRequest() + .withUrlPath(issue.getRepositoryUrlPath()) + .fetch(GHRepository.class); issue.wrap(repository); return issue; } catch (FileNotFoundException e) {