(@Nullable Object object)
| 339 | } |
| 340 | |
| 341 | @Override |
| 342 | public boolean equals(@Nullable Object object) { |
| 343 | if (object == this) { |
| 344 | return true; |
| 345 | } else if (object instanceof ImmutableSet && isHashCodeFast() |
| 346 | && ((ImmutableSet<?>) object).isHashCodeFast() |
| 347 | && hashCode() != object.hashCode()) { |
| 348 | return false; |
| 349 | } |
| 350 | return Sets.equalsImpl(this, object); |
| 351 | } |
| 352 | |
| 353 | @Override |
| 354 | public int hashCode() { |
nothing calls this directly
no test coverage detected