Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
佳 邓
Gitlab4j Api
Commits
fc44476d
Unverified
Commit
fc44476d
authored
Jan 21, 2021
by
Esko Tajakka
Committed by
GitHub
Jan 21, 2021
Browse files
Update PagerSpliterator.java
parent
1287b236
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/main/java/org/gitlab4j/api/PagerSpliterator.java
View file @
fc44476d
...
...
@@ -30,8 +30,10 @@ class PagerSpliterator<T> implements Spliterator<T> {
return
true
;
}
else
if
(
pager
.
hasNext
())
{
elements
=
pager
.
next
().
iterator
();
action
.
accept
(
elements
.
next
());
return
true
;
if
(
elements
.
hasNext
())
{
action
.
accept
(
elements
.
next
());
return
true
;
}
}
return
false
;
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment