Skip to content

Commit 3006d08

Browse files
committed
comment fix
1 parent 18b8185 commit 3006d08

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/redhat/labs/lodestar/models/PagedResults.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public void update(Response response, GenericType<List<T>> type) {
6060
}
6161
List<T> responseSet = response.readEntity(type);
6262

63-
//There were no results so don't get any more.
63+
//There weren't enough results to fetch another page
6464
if(responseSet.size() < pageSize && total == UNDEFINED_PAGE_COUNT) {
6565
total = 1;
6666
}

0 commit comments

Comments
 (0)