@deprecated Provided only to satisfy the {@link BiPredicate} interface; use {@link #equivalent} instead. @since 21.0
(@Nullable T t, @Nullable T u)
| 81 | * @since 21.0 |
| 82 | */ |
| 83 | @InlineMe(replacement = "this.equivalent(t, u)") |
| 84 | @Deprecated |
| 85 | @Override |
| 86 | public final boolean test(@Nullable T t, @Nullable T u) { |
| 87 | return equivalent(t, u); |
| 88 | } |
| 89 | |
| 90 | /** |
| 91 | * Implemented by the user to determine whether {@code a} and {@code b} are considered equivalent, |
nothing calls this directly
no test coverage detected