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