Protected helper class to store key/value pairs The protected qualifier allows subclass access
| 16 | * The protected qualifier allows subclass access |
| 17 | */ |
| 18 | protected class Node { |
| 19 | K key; |
| 20 | V value; |
| 21 | |
| 22 | Node(K k, V v) { |
| 23 | key = k; |
| 24 | value = v; |
| 25 | } |
| 26 | } |
| 27 | |
| 28 | /* Instance Variables */ |
| 29 | private Collection<Node>[] buckets; |
nothing calls this directly
no outgoing calls
no test coverage detected