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

Method equals

output/java_guava/1.4.17/Types.java:497–505  ·  view source on GitHub ↗
(Object obj)

Source from the content-addressed store, hash-verified

495 }
496
497 @Override
498 public boolean equals(Object obj) {
499 if (obj instanceof WildcardType) {
500 WildcardType that = (WildcardType) obj;
501 return lowerBounds.equals(Arrays.asList(that.getLowerBounds()))
502 && upperBounds.equals(Arrays.asList(that.getUpperBounds()));
503 }
504 return false;
505 }
506
507 @Override
508 public int hashCode() {

Callers

nothing calls this directly

Calls 4

equalsMethod · 0.65
asListMethod · 0.45
getLowerBoundsMethod · 0.45
getUpperBoundsMethod · 0.45

Tested by

no test coverage detected