Finds the next entry in the current table. Returns true if an entry was found.
()
| 4367 | */ |
| 4368 | |
| 4369 | boolean nextInTable() { |
| 4370 | while (nextTableIndex >= 0) { |
| 4371 | if ((nextEntry = currentTable.get(nextTableIndex--)) != null) { |
| 4372 | if (advanceTo(nextEntry) || nextInChain()) { |
| 4373 | return true; |
| 4374 | } |
| 4375 | } |
| 4376 | } |
| 4377 | return false; |
| 4378 | } |
| 4379 | |
| 4380 | /** |
| 4381 | * Advances to the given entry. Returns true if the entry was valid, false if it should be |
no test coverage detected