| 70 | } |
| 71 | |
| 72 | private static class MyHelper<K, V> |
| 73 | extends HashMap.MyHelper<K, V> |
| 74 | { |
| 75 | public int hash(K a) { |
| 76 | return (a == null ? 0 : System.identityHashCode(a)); |
| 77 | } |
| 78 | |
| 79 | public boolean equal(K a, K b) { |
| 80 | return a == b; |
| 81 | } |
| 82 | } |
| 83 | } |
nothing calls this directly
no outgoing calls
no test coverage detected