()
| 354 | } |
| 355 | |
| 356 | public boolean hasNext() { |
| 357 | if (array != null) { |
| 358 | while (nextCell == null && ++ nextIndex < array.length) { |
| 359 | if (array[nextIndex] != null) { |
| 360 | nextCell = array[nextIndex]; |
| 361 | return true; |
| 362 | } |
| 363 | } |
| 364 | } |
| 365 | return nextCell != null; |
| 366 | } |
| 367 | |
| 368 | public void remove() { |
| 369 | if (currentCell != null) { |
no outgoing calls
no test coverage detected