MCPcopy Index your code
hub / github.com/antlr/codebuff / equals

Method equals

output/java_guava/1.4.17/Maps.java:636–644  ·  view source on GitHub ↗
(@Nullable Object object)

Source from the content-addressed store, hash-verified

634 }
635
636 @Override
637 public boolean equals(@Nullable Object object) {
638 if (object instanceof MapDifference.ValueDifference) {
639 MapDifference.ValueDifference<?> that = (MapDifference.ValueDifference<?>) object;
640 return Objects.equal(this.left, that.leftValue())
641&& Objects.equal(this.right, that.rightValue());
642 }
643 return false;
644 }
645
646 @Override
647 public int hashCode() {

Callers

nothing calls this directly

Calls 3

equalMethod · 0.95
leftValueMethod · 0.65
rightValueMethod · 0.65

Tested by

no test coverage detected