File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
src/main/java/com/spotify/github/v3 Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ public interface CheckRunResponse extends CheckRunBase {
8080
8181 /**
8282 * Pull Requests where this check is applied.
83- * @return the list of pull requests
83+ * @return the optional of list of pull requests
8484 */
85- List <PartialPullRequestItem > pullRequests ();
85+ Optional < List <PartialPullRequestItem > > pullRequests ();
8686}
Original file line number Diff line number Diff line change 3434@ JsonDeserialize (as = ImmutablePartialPullRequestItem .class )
3535public interface PartialPullRequestItem extends CloseTracking {
3636 /** ID. */
37+ @ Nullable
3738 Long id ();
3839
3940 /** URL. */
41+ @ Nullable
4042 URI url ();
4143
4244 /** Number. */
45+ @ Nullable
4346 Long number ();
4447
4548 /** Head reference. */
You can’t perform that action at this time.
0 commit comments