@@ -331,7 +331,7 @@ public Optional<MergeRequest> getOptionalMergeRequest(Object projectIdOrPath, Lo
331
331
* @return a list containing the commits for the specified merge request
332
332
* @throws GitLabApiException GitLabApiException if any exception occurs during execution
333
333
*/
334
- public List <Commit > getCommits (Object projectIdOrPath , int mergeRequestIid ) throws GitLabApiException {
334
+ public List <Commit > getCommits (Object projectIdOrPath , Long mergeRequestIid ) throws GitLabApiException {
335
335
return (getCommits (projectIdOrPath , mergeRequestIid , getDefaultPerPage ()).all ());
336
336
}
337
337
@@ -349,7 +349,7 @@ public List<Commit> getCommits(Object projectIdOrPath, int mergeRequestIid) thro
349
349
* @return a list containing the commits for the specified merge request
350
350
* @throws GitLabApiException GitLabApiException if any exception occurs during execution
351
351
*/
352
- public List <Commit > getCommits (Object projectIdOrPath , int mergeRequestIid , int page , int perPage ) throws GitLabApiException {
352
+ public List <Commit > getCommits (Object projectIdOrPath , Long mergeRequestIid , int page , int perPage ) throws GitLabApiException {
353
353
Form formData = new GitLabApiForm ().withParam ("owned" , true ).withParam (PAGE_PARAM , page ).withParam (PER_PAGE_PARAM , perPage );
354
354
Response response = get (Response .Status .OK , formData .asMap (), "projects" , getProjectIdOrPath (projectIdOrPath ), "merge_requests" , mergeRequestIid , "commits" );
355
355
return (response .readEntity (new GenericType <List <Commit >>() {}));
@@ -368,7 +368,7 @@ public List<Commit> getCommits(Object projectIdOrPath, int mergeRequestIid, int
368
368
* @return a Pager containing the commits for the specified merge request
369
369
* @throws GitLabApiException GitLabApiException if any exception occurs during execution
370
370
*/
371
- public Pager <Commit > getCommits (Object projectIdOrPath , int mergeRequestIid , int itemsPerPage ) throws GitLabApiException {
371
+ public Pager <Commit > getCommits (Object projectIdOrPath , Long mergeRequestIid , int itemsPerPage ) throws GitLabApiException {
372
372
return (new Pager <Commit >(this , Commit .class , itemsPerPage , null ,
373
373
"projects" , getProjectIdOrPath (projectIdOrPath ), "merge_requests" , mergeRequestIid , "commits" ));
374
374
}
@@ -385,7 +385,7 @@ public Pager<Commit> getCommits(Object projectIdOrPath, int mergeRequestIid, int
385
385
* @return a Stream containing the commits for the specified merge request
386
386
* @throws GitLabApiException GitLabApiException if any exception occurs during execution
387
387
*/
388
- public Stream <Commit > getCommitsStream (Object projectIdOrPath , int mergeRequestIid ) throws GitLabApiException {
388
+ public Stream <Commit > getCommitsStream (Object projectIdOrPath , Long mergeRequestIid ) throws GitLabApiException {
389
389
return (getCommits (projectIdOrPath , mergeRequestIid , getDefaultPerPage ()).stream ());
390
390
}
391
391
0 commit comments