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