(Object key)
| 127 | } |
| 128 | |
| 129 | private Entry<K, V> getEntry(Object key) { |
| 130 | for (Entry<K, V> e : entries) { |
| 131 | if (e.getKey().equals(key)) { |
| 132 | return e; |
| 133 | } |
| 134 | } |
| 135 | return null; |
| 136 | } |
| 137 | |
| 138 | private void ensureCapacity(int minCapacity) { |
| 139 | if (fixedCapacity && minCapacity > initialCapacity) { |
no test coverage detected