(K theKey, int hash)
| 63 | Entry<K, V> next; |
| 64 | |
| 65 | Entry(K theKey, int hash) { |
| 66 | super(theKey, null); |
| 67 | this.origKeyHash = hash; |
| 68 | } |
| 69 | |
| 70 | Entry(K theKey, V theValue) { |
| 71 | super(theKey, theValue); |
nothing calls this directly
no test coverage detected