make getPullRequests public

This commit is contained in:
Joe
2020-07-30 13:59:36 +01:00
parent 92c141cee6
commit 2f2f26767e

View File

@@ -107,7 +107,7 @@ public class GHCheckRun extends GHObject {
*
* @return Pull requests of this check run
*/
GHPullRequest[] getPullRequests() throws IOException {
public GHPullRequest[] getPullRequests() throws IOException {
if (pullRequests != null && pullRequests.length != 0) {
for (GHPullRequest singlePull : pullRequests) {
singlePull.refresh();