Skip to content

Commit

Permalink
fix : parenthesis
Browse files Browse the repository at this point in the history
  • Loading branch information
brochard committed Mar 18, 2024
1 parent 914819e commit d9d0075
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/gitlab4j/api/MilestonesApi.java
Original file line number Diff line number Diff line change
Expand Up @@ -496,7 +496,7 @@ public Stream<Issue> getIssuesStream(Object projectIdOrPath, Long milestoneId) t
* @throws GitLabApiException if any exception occurs
*/
public List<MergeRequest> getMergeRequest(Object projectIdOrPath, Long milestoneId) throws GitLabApiException {
return getMergeRequest(projectIdOrPath, milestoneId, getDefaultPerPage()).all();
return (getMergeRequest(projectIdOrPath, milestoneId, getDefaultPerPage()).all());
}

/**
Expand Down

0 comments on commit d9d0075

Please sign in to comment.