Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
bitwiseman committed Oct 10, 2021
1 parent 64b555e commit ccf6031
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/main/java/org/kohsuke/github/GHProjectCard.java
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit ccf6031

Please sign in to comment.