Stores KEY as the key in this key-value pair, VAL as the value, and NEXT as the next node in the linked list.
(K k, V v, Entry n)
| 74 | /** Stores KEY as the key in this key-value pair, VAL as the value, and |
| 75 | * NEXT as the next node in the linked list. */ |
| 76 | Entry(K k, V v, Entry n) { |
| 77 | key = k; |
| 78 | val = v; |
| 79 | next = n; |
| 80 | } |
| 81 | |
| 82 | /** Returns the Entry in this linked list of key-value pairs whose key |
| 83 | * is equal to KEY, or null if no such Entry exists. */ |
nothing calls this directly
no outgoing calls
no test coverage detected