From 18342c62e8f7ad98aadf5a830d3da4ce35660579 Mon Sep 17 00:00:00 2001 From: Greg Messner Date: Wed, 12 Sep 2018 20:35:19 -0700 Subject: [PATCH] Updated for release 4.8.47 --- README.md | 4 ++-- src/main/java/org/gitlab4j/api/IssuesApi.java | 12 ++++++------ 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index f4af4864..e056a418 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ To utilize the GitLab API for Java in your project, simply add the following dep ```java dependencies { ... - compile group: 'org.gitlab4j', name: 'gitlab4j-api', version: '4.8.46' + compile group: 'org.gitlab4j', name: 'gitlab4j-api', version: '4.8.47' } ``` @@ -22,7 +22,7 @@ dependencies { org.gitlab4j gitlab4j-api - 4.8.46 + 4.8.47 ``` diff --git a/src/main/java/org/gitlab4j/api/IssuesApi.java b/src/main/java/org/gitlab4j/api/IssuesApi.java index 302bef8d..e3f14d76 100644 --- a/src/main/java/org/gitlab4j/api/IssuesApi.java +++ b/src/main/java/org/gitlab4j/api/IssuesApi.java @@ -137,7 +137,7 @@ public class IssuesApi extends AbstractApi implements Constants { * @param projectIdOrPath The ID or URL-encoded path of the project owned by the authenticated user. * @param filter {@link IssueFilter} a IssueFilter instance with the filter settings * @return the list of issues in the specified range. - * @throws GitLabApiException + * @throws GitLabApiException if any exception occurs */ public List getIssues(Object projectIdOrPath, IssueFilter filter) throws GitLabApiException { return (getIssues(projectIdOrPath, filter, 1, getDefaultPerPage())); @@ -153,7 +153,7 @@ public class IssuesApi extends AbstractApi implements Constants { * @param page the page to get. * @param perPage the number of projects per page. * @return the list of issues in the specified range. - * @throws GitLabApiException + * @throws GitLabApiException if any exception occurs */ public List getIssues(Object projectIdOrPath, IssueFilter filter, int page, int perPage) throws GitLabApiException { @@ -171,7 +171,7 @@ public class IssuesApi extends AbstractApi implements Constants { * @param filter {@link IssueFilter} a IssueFilter instance with the filter settings. * @param itemsPerPage the number of Project instances that will be fetched per page. * @return the list of issues in the specified range. - * @throws GitLabApiException + * @throws GitLabApiException if any exception occurs */ public Pager getIssues(Object projectIdOrPath, IssueFilter filter, int itemsPerPage) throws GitLabApiException { @@ -188,7 +188,7 @@ public class IssuesApi extends AbstractApi implements Constants { * * @param filter {@link IssueFilter} a IssueFilter instance with the filter settings * @return the list of issues in the specified range. - * @throws GitLabApiException + * @throws GitLabApiException if any exception occurs */ public List getIssues(IssueFilter filter) throws GitLabApiException { return (getIssues(filter, 1, getDefaultPerPage())); @@ -204,7 +204,7 @@ public class IssuesApi extends AbstractApi implements Constants { * @param page the page to get. * @param perPage the number of projects per page. * @return the list of issues in the specified range. - * @throws GitLabApiException + * @throws GitLabApiException if any exception occurs */ public List getIssues(IssueFilter filter, int page, int perPage) throws GitLabApiException { @@ -222,7 +222,7 @@ public class IssuesApi extends AbstractApi implements Constants { * @param filter {@link IssueFilter} a IssueFilter instance with the filter settings. * @param itemsPerPage the number of Project instances that will be fetched per page. * @return the list of issues in the specified range. - * @throws GitLabApiException + * @throws GitLabApiException if any exception occurs */ public Pager getIssues(IssueFilter filter, int itemsPerPage) throws GitLabApiException { -- GitLab