(Object obj)
| 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() { |
nothing calls this directly
no test coverage detected