(K key)
| 76 | } |
| 77 | |
| 78 | public V get(K key) { |
| 79 | for (HashMap<K, V> bucket : buckets) { |
| 80 | if (bucket.containsKey(key)) { |
| 81 | return bucket.get(key); |
| 82 | } |
| 83 | } |
| 84 | return null; |
| 85 | } |
| 86 | |
| 87 | public void put(K key, V value) { |
| 88 | Iterator<HashMap<K, V>> it = buckets.iterator(); |
nothing calls this directly
no test coverage detected