diff --git a/android/guava/src/com/google/common/base/Equivalence.java b/android/guava/src/com/google/common/base/Equivalence.java index cf82af68aff6..02c3423016b8 100644 --- a/android/guava/src/com/google/common/base/Equivalence.java +++ b/android/guava/src/com/google/common/base/Equivalence.java @@ -45,8 +45,7 @@ * The type parameter is rather than so that we can use T in the * doEquivalent and doHash methods to indicate that the parameter cannot be null. */ -public abstract class Equivalence -{ +public abstract class Equivalence { /** Constructor for use by subclasses. */ protected Equivalence() {} @@ -78,11 +77,6 @@ public final boolean equivalent(@CheckForNull T a, @CheckForNull T b) { } /** - * Implemented by the user to determine whether {@code a} and {@code b} are considered equivalent, - * subject to the requirements specified in {@link #equivalent}. - * - *

This method should not be called except by {@link #equivalent}. When {@link #equivalent} - * calls this method, {@code a} and {@code b} are guaranteed to be distinct, non-null instances. * * @since 10.0 (previously, subclasses would override equivalent()) */ diff --git a/android/guava/src/com/google/common/base/Function.java b/android/guava/src/com/google/common/base/Function.java index 849da7542352..bbc185dc88b4 100644 --- a/android/guava/src/com/google/common/base/Function.java +++ b/android/guava/src/com/google/common/base/Function.java @@ -45,8 +45,7 @@ */ @GwtCompatible @ElementTypesAreNonnullByDefault -public interface Function -{ +public interface Function { /** * Returns the result of applying this function to {@code input}. This method is generally * expected, but not absolutely required, to have the following properties: