MCPcopy Index your code
hub / github.com/assertj/assertj / hashCode

Method hashCode

src/main/java/org/assertj/core/data/MapEntry.java:55–61  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

53 }
54
55 @Override
56 public int hashCode() {
57 int result = 1;
58 result = HASH_CODE_PRIME * result + hashCodeFor(key);
59 result = HASH_CODE_PRIME * result + hashCodeFor(value);
60 return result;
61 }
62
63 @Override
64 public String toString() {

Callers

nothing calls this directly

Calls 1

hashCodeForMethod · 0.80

Tested by

no test coverage detected