MCPcopy
hub / github.com/google/guava / test

Method test

guava/src/com/google/common/base/Equivalence.java:83–88  ·  view source on GitHub ↗

@deprecated Provided only to satisfy the {@link BiPredicate} interface; use {@link #equivalent} instead. @since 21.0

(@Nullable T t, @Nullable T u)

Source from the content-addressed store, hash-verified

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,

Callers

nothing calls this directly

Calls 1

equivalentMethod · 0.95

Tested by

no test coverage detected