Finds the next entry in the current chain. Returns true if an entry was found.
()
| 4352 | */ |
| 4353 | |
| 4354 | boolean nextInChain() { |
| 4355 | if (nextEntry != null) { |
| 4356 | for (nextEntry = nextEntry.getNext(); nextEntry != null; nextEntry = nextEntry.getNext()) { |
| 4357 | if (advanceTo(nextEntry)) { |
| 4358 | return true; |
| 4359 | } |
| 4360 | } |
| 4361 | } |
| 4362 | return false; |
| 4363 | } |
| 4364 | |
| 4365 | /** |
| 4366 | * Finds the next entry in the current table. Returns true if an entry was found. |
no test coverage detected