Skip to content

Commit ccf6031

Browse files
committed
Formatting
1 parent 64b555e commit ccf6031

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/main/java/org/kohsuke/github/GHProjectCard.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,8 +131,9 @@ public GHIssue getContent() throws IOException {
131131
} else {
132132
issue = root().createRequest().withUrlPath(getContentUrl().getPath()).fetch(GHIssue.class);
133133
}
134-
GHRepository repository =
135-
root().createRequest().withUrlPath(issue.getRepositoryUrlPath()).fetch(GHRepository.class);
134+
GHRepository repository = root().createRequest()
135+
.withUrlPath(issue.getRepositoryUrlPath())
136+
.fetch(GHRepository.class);
136137
issue.wrap(repository);
137138
return issue;
138139
} catch (FileNotFoundException e) {

0 commit comments

Comments
 (0)