MCPcopy Create free account
hub / github.com/ReadyTalk/avian / MyHelper

Class MyHelper

classpath/java/util/IdentityHashMap.java:72–82  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected