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

Method equals

output/java_guava/1.4.13/Functions.java:192–200  ·  view source on GitHub ↗
(@Nullable Object o)

Source from the content-addressed store, hash-verified

190 }
191
192 @Override
193 public boolean equals(@Nullable Object o) {
194 if (o instanceof ForMapWithDefault) {
195 ForMapWithDefault<?, ?> that = (ForMapWithDefault<?, ?>) o;
196 return map.equals(that.map)
197 && Objects.equal(defaultValue, that.defaultValue);
198 }
199 return false;
200 }
201
202 @Override
203 public int hashCode() {

Callers

nothing calls this directly

Calls 2

equalMethod · 0.95
equalsMethod · 0.65

Tested by

no test coverage detected