Skip to content

Commit 18342c6

Browse files
committed
Updated for release 4.8.47
1 parent 466d078 commit 18342c6

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ To utilize the GitLab API for Java in your project, simply add the following dep
1111
```java
1212
dependencies {
1313
...
14-
compile group: 'org.gitlab4j', name: 'gitlab4j-api', version: '4.8.46'
14+
compile group: 'org.gitlab4j', name: 'gitlab4j-api', version: '4.8.47'
1515
}
1616
```
1717

@@ -22,7 +22,7 @@ dependencies {
2222
<dependency>
2323
<groupId>org.gitlab4j</groupId>
2424
<artifactId>gitlab4j-api</artifactId>
25-
<version>4.8.46</version>
25+
<version>4.8.47</version>
2626
</dependency>
2727
```
2828

src/main/java/org/gitlab4j/api/IssuesApi.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ public Pager<Issue> getIssues(Integer projectId, int itemsPerPage) throws GitLab
137137
* @param projectIdOrPath The ID or URL-encoded path of the project owned by the authenticated user.
138138
* @param filter {@link IssueFilter} a IssueFilter instance with the filter settings
139139
* @return the list of issues in the specified range.
140-
* @throws GitLabApiException
140+
* @throws GitLabApiException if any exception occurs
141141
*/
142142
public List<Issue> getIssues(Object projectIdOrPath, IssueFilter filter) throws GitLabApiException {
143143
return (getIssues(projectIdOrPath, filter, 1, getDefaultPerPage()));
@@ -153,7 +153,7 @@ public List<Issue> getIssues(Object projectIdOrPath, IssueFilter filter) throws
153153
* @param page the page to get.
154154
* @param perPage the number of projects per page.
155155
* @return the list of issues in the specified range.
156-
* @throws GitLabApiException
156+
* @throws GitLabApiException if any exception occurs
157157
*/
158158
public List<Issue> getIssues(Object projectIdOrPath, IssueFilter filter, int page, int perPage) throws GitLabApiException {
159159

@@ -171,7 +171,7 @@ public List<Issue> getIssues(Object projectIdOrPath, IssueFilter filter, int pag
171171
* @param filter {@link IssueFilter} a IssueFilter instance with the filter settings.
172172
* @param itemsPerPage the number of Project instances that will be fetched per page.
173173
* @return the list of issues in the specified range.
174-
* @throws GitLabApiException
174+
* @throws GitLabApiException if any exception occurs
175175
*/
176176
public Pager<Issue> getIssues(Object projectIdOrPath, IssueFilter filter, int itemsPerPage) throws GitLabApiException {
177177

@@ -188,7 +188,7 @@ public Pager<Issue> getIssues(Object projectIdOrPath, IssueFilter filter, int it
188188
*
189189
* @param filter {@link IssueFilter} a IssueFilter instance with the filter settings
190190
* @return the list of issues in the specified range.
191-
* @throws GitLabApiException
191+
* @throws GitLabApiException if any exception occurs
192192
*/
193193
public List<Issue> getIssues(IssueFilter filter) throws GitLabApiException {
194194
return (getIssues(filter, 1, getDefaultPerPage()));
@@ -204,7 +204,7 @@ public List<Issue> getIssues(IssueFilter filter) throws GitLabApiException {
204204
* @param page the page to get.
205205
* @param perPage the number of projects per page.
206206
* @return the list of issues in the specified range.
207-
* @throws GitLabApiException
207+
* @throws GitLabApiException if any exception occurs
208208
*/
209209
public List<Issue> getIssues(IssueFilter filter, int page, int perPage) throws GitLabApiException {
210210

@@ -222,7 +222,7 @@ public List<Issue> getIssues(IssueFilter filter, int page, int perPage) throws G
222222
* @param filter {@link IssueFilter} a IssueFilter instance with the filter settings.
223223
* @param itemsPerPage the number of Project instances that will be fetched per page.
224224
* @return the list of issues in the specified range.
225-
* @throws GitLabApiException
225+
* @throws GitLabApiException if any exception occurs
226226
*/
227227
public Pager<Issue> getIssues(IssueFilter filter, int itemsPerPage) throws GitLabApiException {
228228

0 commit comments

Comments
 (0)