mirror of
https://github.com/InsanusMokrassar/MicroUtils.git
synced 2024-11-26 03:58:45 +00:00
change order in iterable to skip changing of pagination on no left elements error
This commit is contained in:
parent
c25e3f5867
commit
e38094df58
@ -14,9 +14,9 @@ class PaginatedIterator<T>(
|
|||||||
override fun next(): T {
|
override fun next(): T {
|
||||||
if (currentStack.isEmpty()) {
|
if (currentStack.isEmpty()) {
|
||||||
val resultPagination = paginationResultGetter.invoke(pagination)
|
val resultPagination = paginationResultGetter.invoke(pagination)
|
||||||
pagination = resultPagination.nextPage()
|
|
||||||
currentStack.addAll(resultPagination.results)
|
currentStack.addAll(resultPagination.results)
|
||||||
require(currentStack.isNotEmpty()) { "There is no elements left" }
|
require(currentStack.isNotEmpty()) { "There is no elements left" }
|
||||||
|
pagination = resultPagination.nextPage()
|
||||||
}
|
}
|
||||||
return currentStack.removeFirst()
|
return currentStack.removeFirst()
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user