Returns a new node to be placed in a hash table bucket
(K key, V value)
| 47 | * Returns a new node to be placed in a hash table bucket |
| 48 | */ |
| 49 | private Node createNode(K key, V value) { |
| 50 | return null; |
| 51 | } |
| 52 | |
| 53 | /** |
| 54 | * Returns a data structure to be a hash table bucket |
nothing calls this directly
no outgoing calls
no test coverage detected