MCPcopy Create free account
hub / github.com/antlr/codebuff / hashCode

Method hashCode

output/java_guava/1.4.17/MediaType.java:1028–1037  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1026 }
1027
1028 @Override
1029 public int hashCode() {
1030 // racy single-check idiom
1031 int h = hashCode;
1032 if (h == 0) {
1033 h = Objects.hashCode(type, subtype, parametersAsMap());
1034 hashCode = h;
1035 }
1036 return h;
1037 }
1038
1039 private static final MapJoiner PARAMETER_JOINER = Joiner.on("; ").withKeyValueSeparator("=");
1040

Callers

nothing calls this directly

Calls 2

hashCodeMethod · 0.95
parametersAsMapMethod · 0.95

Tested by

no test coverage detected