@param hashCode a Entry#hashCode value. @return the list of entries which can potentially have the given hash code. The list is stored via the Entry#next field.
(final int hashCode)
| 405 | * via the {@link Entry#next} field. |
| 406 | */ |
| 407 | private Entry get(final int hashCode) { |
| 408 | return entries[hashCode % entries.length]; |
| 409 | } |
| 410 | |
| 411 | /** |
| 412 | * Puts the given entry in the {@link #entries} hash set. This method does <i>not</i> check |
no outgoing calls
no test coverage detected