Skip to content

Commit d12fc1d

Browse files
ctabintimols
authored andcommitted
The pagination argument was ignored (timols#344)
1 parent f03eedf commit d12fc1d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/gitlab/api/GitlabAPI.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1995,7 +1995,7 @@ public List<GitlabCommit> getLastCommits(Serializable projectId, String branchOr
19951995

19961996
public List<GitlabCommit> getCommits(Serializable projectId, Pagination pagination,
19971997
String branchOrTag) throws IOException {
1998-
return getCommits(projectId, null, branchOrTag, null);
1998+
return getCommits(projectId, pagination, branchOrTag, null);
19991999
}
20002000

20012001
public List<GitlabCommit> getCommits(Serializable projectId, Pagination pagination,

0 commit comments

Comments
 (0)