()
| 424 | Entry<E> prevEntry; |
| 425 | |
| 426 | @Override |
| 427 | public boolean hasNext() { |
| 428 | if (current == null) { |
| 429 | return false; |
| 430 | } else if (range.tooHigh(current.getElement())) { |
| 431 | current = null; |
| 432 | return false; |
| 433 | } else { |
| 434 | return true; |
| 435 | } |
| 436 | } |
| 437 | |
| 438 | @Override |
| 439 | public Entry<E> next() { |
no test coverage detected