e93fb7
diff -up guava-31.0.1/android/guava/src/com/google/common/collect/CompactHashMap.java.multiline guava-31.0.1/android/guava/src/com/google/common/collect/CompactHashMap.java
e93fb7
--- guava-31.0.1/android/guava/src/com/google/common/collect/CompactHashMap.java.multiline	2021-10-13 20:45:58.443768858 -0600
e93fb7
+++ guava-31.0.1/android/guava/src/com/google/common/collect/CompactHashMap.java	2021-10-13 20:45:58.827772298 -0600
e93fb7
@@ -113,8 +113,6 @@ class CompactHashMap
e93fb7
    * Maximum allowed false positive probability of detecting a hash flooding attack given random
e93fb7
    * input.
e93fb7
    */
e93fb7
-  (
e93fb7
-      )
e93fb7
   static final double HASH_FLOODING_FPP = 0.001;
e93fb7
 
e93fb7
   /**
e93fb7
diff -up guava-31.0.1/android/guava/src/com/google/common/collect/CompactHashSet.java.multiline guava-31.0.1/android/guava/src/com/google/common/collect/CompactHashSet.java
e93fb7
--- guava-31.0.1/android/guava/src/com/google/common/collect/CompactHashSet.java.multiline	2021-10-13 20:45:58.413768589 -0600
e93fb7
+++ guava-31.0.1/android/guava/src/com/google/common/collect/CompactHashSet.java	2021-10-13 20:45:58.827772298 -0600
e93fb7
@@ -127,8 +127,6 @@ class CompactHashSet<E extends Object> e
e93fb7
    * Maximum allowed false positive probability of detecting a hash flooding attack given random
e93fb7
    * input.
e93fb7
    */
e93fb7
-  (
e93fb7
-      )
e93fb7
   static final double HASH_FLOODING_FPP = 0.001;
e93fb7
 
e93fb7
   /**
e93fb7
diff -up guava-31.0.1/android/guava/src/com/google/common/graph/Traverser.java.multiline guava-31.0.1/android/guava/src/com/google/common/graph/Traverser.java
e93fb7
--- guava-31.0.1/android/guava/src/com/google/common/graph/Traverser.java.multiline	2021-10-13 20:45:58.364768150 -0600
e93fb7
+++ guava-31.0.1/android/guava/src/com/google/common/graph/Traverser.java	2021-10-13 20:45:58.827772298 -0600
e93fb7
@@ -61,9 +61,6 @@ import javax.annotation.CheckForNull;
e93fb7
  * @since 23.1
e93fb7
  */
e93fb7
 
e93fb7
-(
e93fb7
-    "Call forGraph or forTree, passing a lambda or a Graph with the desired edges (built with"
e93fb7
-        + " GraphBuilder)")
e93fb7
 @ElementTypesAreNonnullByDefault
e93fb7
 public abstract class Traverser<N> {
e93fb7
   private final SuccessorsFunction<N> successorFunction;
e93fb7
diff -up guava-31.0.1/android/guava/src/com/google/common/primitives/Doubles.java.multiline guava-31.0.1/android/guava/src/com/google/common/primitives/Doubles.java
e93fb7
--- guava-31.0.1/android/guava/src/com/google/common/primitives/Doubles.java.multiline	2021-10-13 20:45:58.372768222 -0600
e93fb7
+++ guava-31.0.1/android/guava/src/com/google/common/primitives/Doubles.java	2021-10-13 20:45:58.827772298 -0600
e93fb7
@@ -209,8 +209,6 @@ public final class Doubles extends Doubl
e93fb7
    *     the array
e93fb7
    * @throws IllegalArgumentException if {@code array} is empty
e93fb7
    */
e93fb7
-  (
e93fb7
-      "Available in GWT! Annotation is to avoid conflict with GWT specialization of base class.")
e93fb7
   public static double min(double... array) {
e93fb7
     checkArgument(array.length > 0);
e93fb7
     double min = array[0];
e93fb7
@@ -229,8 +227,6 @@ public final class Doubles extends Doubl
e93fb7
    *     in the array
e93fb7
    * @throws IllegalArgumentException if {@code array} is empty
e93fb7
    */
e93fb7
-  (
e93fb7
-      "Available in GWT! Annotation is to avoid conflict with GWT specialization of base class.")
e93fb7
   public static double max(double... array) {
e93fb7
     checkArgument(array.length > 0);
e93fb7
     double max = array[0];
e93fb7
diff -up guava-31.0.1/android/guava/src/com/google/common/primitives/Floats.java.multiline guava-31.0.1/android/guava/src/com/google/common/primitives/Floats.java
e93fb7
--- guava-31.0.1/android/guava/src/com/google/common/primitives/Floats.java.multiline	2021-10-13 20:45:58.370768204 -0600
e93fb7
+++ guava-31.0.1/android/guava/src/com/google/common/primitives/Floats.java	2021-10-13 20:45:58.828772307 -0600
e93fb7
@@ -206,8 +206,6 @@ public final class Floats extends Floats
e93fb7
    *     the array
e93fb7
    * @throws IllegalArgumentException if {@code array} is empty
e93fb7
    */
e93fb7
-  (
e93fb7
-      "Available in GWT! Annotation is to avoid conflict with GWT specialization of base class.")
e93fb7
   public static float min(float... array) {
e93fb7
     checkArgument(array.length > 0);
e93fb7
     float min = array[0];
e93fb7
@@ -226,8 +224,6 @@ public final class Floats extends Floats
e93fb7
    *     in the array
e93fb7
    * @throws IllegalArgumentException if {@code array} is empty
e93fb7
    */
e93fb7
-  (
e93fb7
-      "Available in GWT! Annotation is to avoid conflict with GWT specialization of base class.")
e93fb7
   public static float max(float... array) {
e93fb7
     checkArgument(array.length > 0);
e93fb7
     float max = array[0];
e93fb7
diff -up guava-31.0.1/android/guava/src/com/google/common/primitives/Ints.java.multiline guava-31.0.1/android/guava/src/com/google/common/primitives/Ints.java
e93fb7
--- guava-31.0.1/android/guava/src/com/google/common/primitives/Ints.java.multiline	2021-10-13 20:45:58.369768195 -0600
e93fb7
+++ guava-31.0.1/android/guava/src/com/google/common/primitives/Ints.java	2021-10-13 20:45:58.828772307 -0600
e93fb7
@@ -220,8 +220,6 @@ public final class Ints extends IntsMeth
e93fb7
    *     the array
e93fb7
    * @throws IllegalArgumentException if {@code array} is empty
e93fb7
    */
e93fb7
-  (
e93fb7
-      "Available in GWT! Annotation is to avoid conflict with GWT specialization of base class.")
e93fb7
   public static int min(int... array) {
e93fb7
     checkArgument(array.length > 0);
e93fb7
     int min = array[0];
e93fb7
@@ -241,8 +239,6 @@ public final class Ints extends IntsMeth
e93fb7
    *     in the array
e93fb7
    * @throws IllegalArgumentException if {@code array} is empty
e93fb7
    */
e93fb7
-  (
e93fb7
-      "Available in GWT! Annotation is to avoid conflict with GWT specialization of base class.")
e93fb7
   public static int max(int... array) {
e93fb7
     checkArgument(array.length > 0);
e93fb7
     int max = array[0];
e93fb7
diff -up guava-31.0.1/android/guava/src/com/google/common/primitives/Shorts.java.multiline guava-31.0.1/android/guava/src/com/google/common/primitives/Shorts.java
e93fb7
--- guava-31.0.1/android/guava/src/com/google/common/primitives/Shorts.java.multiline	2021-10-13 20:45:58.367768177 -0600
e93fb7
+++ guava-31.0.1/android/guava/src/com/google/common/primitives/Shorts.java	2021-10-13 20:45:58.828772307 -0600
e93fb7
@@ -219,8 +219,6 @@ public final class Shorts extends Shorts
e93fb7
    *     the array
e93fb7
    * @throws IllegalArgumentException if {@code array} is empty
e93fb7
    */
e93fb7
-  (
e93fb7
-      "Available in GWT! Annotation is to avoid conflict with GWT specialization of base class.")
e93fb7
   public static short min(short... array) {
e93fb7
     checkArgument(array.length > 0);
e93fb7
     short min = array[0];
e93fb7
@@ -240,8 +238,6 @@ public final class Shorts extends Shorts
e93fb7
    *     in the array
e93fb7
    * @throws IllegalArgumentException if {@code array} is empty
e93fb7
    */
e93fb7
-  (
e93fb7
-      "Available in GWT! Annotation is to avoid conflict with GWT specialization of base class.")
e93fb7
   public static short max(short... array) {
e93fb7
     checkArgument(array.length > 0);
e93fb7
     short max = array[0];
e93fb7
diff -up guava-31.0.1/android/guava/src/com/google/common/util/concurrent/ClosingFuture.java.multiline guava-31.0.1/android/guava/src/com/google/common/util/concurrent/ClosingFuture.java
e93fb7
--- guava-31.0.1/android/guava/src/com/google/common/util/concurrent/ClosingFuture.java.multiline	2021-10-13 20:45:58.353768052 -0600
e93fb7
+++ guava-31.0.1/android/guava/src/com/google/common/util/concurrent/ClosingFuture.java	2021-10-13 20:45:58.828772307 -0600
e93fb7
@@ -1227,9 +1227,6 @@ public final class ClosingFuture
e93fb7
    *           .closing(executor);
e93fb7
    * }
e93fb7
    */
e93fb7
-  // TODO(cpovirk): Use simple name instead of fully qualified after we stop building with JDK 8.
e93fb7
-  @com.google.errorprone.annotations.DoNotMock(
e93fb7
-      "Use ClosingFuture.whenAllSucceed() or .whenAllComplete() instead.")
e93fb7
   public static class Combiner {
e93fb7
 
e93fb7
     private final CloseableList closeables = new CloseableList();
e93fb7
diff -up guava-31.0.1/android/guava/src/com/google/common/util/concurrent/ListeningExecutorService.java.multiline guava-31.0.1/android/guava/src/com/google/common/util/concurrent/ListeningExecutorService.java
e93fb7
--- guava-31.0.1/android/guava/src/com/google/common/util/concurrent/ListeningExecutorService.java.multiline	2021-10-13 20:45:58.340767936 -0600
e93fb7
+++ guava-31.0.1/android/guava/src/com/google/common/util/concurrent/ListeningExecutorService.java	2021-10-13 20:45:58.829772316 -0600
e93fb7
@@ -33,10 +33,6 @@ import java.util.concurrent.TimeUnit;
e93fb7
  * @author Chris Povirk
e93fb7
  * @since 10.0
e93fb7
  */
e93fb7
-(
e93fb7
-    "Use TestingExecutors.sameThreadScheduledExecutor, or wrap a real Executor from "
e93fb7
-        + "java.util.concurrent.Executors with MoreExecutors.listeningDecorator")
e93fb7
-
e93fb7
 @ElementTypesAreNonnullByDefault
e93fb7
 public interface ListeningExecutorService extends ExecutorService {
e93fb7
   /**
e93fb7
diff -up guava-31.0.1/guava/src/com/google/common/base/Strings.java.multiline guava-31.0.1/guava/src/com/google/common/base/Strings.java
e93fb7
--- guava-31.0.1/guava/src/com/google/common/base/Strings.java.multiline	2021-10-13 20:45:58.793771994 -0600
e93fb7
+++ guava-31.0.1/guava/src/com/google/common/base/Strings.java	2021-10-13 20:45:58.829772316 -0600
e93fb7
@@ -147,8 +147,6 @@ public final class Strings {
e93fb7
    *     {@code count} is zero)
e93fb7
    * @throws IllegalArgumentException if {@code count} is negative
e93fb7
    */
e93fb7
-  ")
e93fb7
-  
e93fb7
   public static String repeat(String string, int count) {
e93fb7
     checkNotNull(string); // eager for GWT.
e93fb7
 
e93fb7
diff -up guava-31.0.1/guava/src/com/google/common/collect/CompactHashMap.java.multiline guava-31.0.1/guava/src/com/google/common/collect/CompactHashMap.java
e93fb7
--- guava-31.0.1/guava/src/com/google/common/collect/CompactHashMap.java.multiline	2021-10-13 20:45:58.776771841 -0600
e93fb7
+++ guava-31.0.1/guava/src/com/google/common/collect/CompactHashMap.java	2021-10-13 20:45:58.829772316 -0600
e93fb7
@@ -117,8 +117,6 @@ class CompactHashMap
e93fb7
    * Maximum allowed false positive probability of detecting a hash flooding attack given random
e93fb7
    * input.
e93fb7
    */
e93fb7
-  (
e93fb7
-      )
e93fb7
   static final double HASH_FLOODING_FPP = 0.001;
e93fb7
 
e93fb7
   /**
e93fb7
diff -up guava-31.0.1/guava/src/com/google/common/collect/CompactHashSet.java.multiline guava-31.0.1/guava/src/com/google/common/collect/CompactHashSet.java
e93fb7
--- guava-31.0.1/guava/src/com/google/common/collect/CompactHashSet.java.multiline	2021-10-13 20:45:58.747771582 -0600
e93fb7
+++ guava-31.0.1/guava/src/com/google/common/collect/CompactHashSet.java	2021-10-13 20:45:58.829772316 -0600
e93fb7
@@ -131,8 +131,6 @@ class CompactHashSet<E extends Object> e
e93fb7
    * Maximum allowed false positive probability of detecting a hash flooding attack given random
e93fb7
    * input.
e93fb7
    */
e93fb7
-  (
e93fb7
-      )
e93fb7
   static final double HASH_FLOODING_FPP = 0.001;
e93fb7
 
e93fb7
   /**
e93fb7
diff -up guava-31.0.1/guava/src/com/google/common/collect/FluentIterable.java.multiline guava-31.0.1/guava/src/com/google/common/collect/FluentIterable.java
e93fb7
--- guava-31.0.1/guava/src/com/google/common/collect/FluentIterable.java.multiline	2021-10-13 20:45:58.750771608 -0600
e93fb7
+++ guava-31.0.1/guava/src/com/google/common/collect/FluentIterable.java	2021-10-13 20:47:09.340403972 -0600
e93fb7
@@ -173,9 +173,6 @@ public abstract class FluentIterable
e93fb7
    *     FluentIterable}
e93fb7
    */
e93fb7
   @Deprecated
e93fb7
-  (
e93fb7
-      replacement = "checkNotNull(iterable)",
e93fb7
-      staticImports = {"com.google.common.base.Preconditions.checkNotNull"})
e93fb7
   public static <E extends Object> FluentIterable<E> from(FluentIterable<E> iterable) {
e93fb7
     return checkNotNull(iterable);
e93fb7
   }
e93fb7
diff -up guava-31.0.1/guava/src/com/google/common/collect/Streams.java.multiline guava-31.0.1/guava/src/com/google/common/collect/Streams.java
e93fb7
--- guava-31.0.1/guava/src/com/google/common/collect/Streams.java.multiline	2021-10-13 20:45:58.779771868 -0600
e93fb7
+++ guava-31.0.1/guava/src/com/google/common/collect/Streams.java	2021-10-13 20:45:58.829772316 -0600
e93fb7
@@ -76,7 +76,6 @@ public final class Streams {
e93fb7
    */
e93fb7
   
e93fb7
   @Deprecated
e93fb7
-  ")
e93fb7
   public static <T extends Object> Stream<T> stream(Collection<T> collection) {
e93fb7
     return collection.stream();
e93fb7
   }
e93fb7
@@ -106,8 +105,6 @@ public final class Streams {
e93fb7
    * 

Java 9 users: use {@code optional.stream()} instead.

e93fb7
    */
e93fb7
   
e93fb7
-  ")
e93fb7
-  
e93fb7
   public static <T> Stream<T> stream(java.util.Optional<T> optional) {
e93fb7
     return optional.isPresent() ? Stream.of(optional.get()) : Stream.empty();
e93fb7
   }
e93fb7
@@ -119,8 +116,6 @@ public final class Streams {
e93fb7
    * 

Java 9 users: use {@code optional.stream()} instead.

e93fb7
    */
e93fb7
   
e93fb7
-  ")
e93fb7
-  
e93fb7
   public static IntStream stream(OptionalInt optional) {
e93fb7
     return optional.isPresent() ? IntStream.of(optional.getAsInt()) : IntStream.empty();
e93fb7
   }
e93fb7
@@ -132,8 +127,6 @@ public final class Streams {
e93fb7
    * 

Java 9 users: use {@code optional.stream()} instead.

e93fb7
    */
e93fb7
   
e93fb7
-  ")
e93fb7
-  
e93fb7
   public static LongStream stream(OptionalLong optional) {
e93fb7
     return optional.isPresent() ? LongStream.of(optional.getAsLong()) : LongStream.empty();
e93fb7
   }
e93fb7
@@ -145,8 +138,6 @@ public final class Streams {
e93fb7
    * 

Java 9 users: use {@code optional.stream()} instead.

e93fb7
    */
e93fb7
   
e93fb7
-  ")
e93fb7
-  
e93fb7
   public static DoubleStream stream(OptionalDouble optional) {
e93fb7
     return optional.isPresent() ? DoubleStream.of(optional.getAsDouble()) : DoubleStream.empty();
e93fb7
   }
e93fb7
diff -up guava-31.0.1/guava/src/com/google/common/graph/Traverser.java.multiline guava-31.0.1/guava/src/com/google/common/graph/Traverser.java
e93fb7
--- guava-31.0.1/guava/src/com/google/common/graph/Traverser.java.multiline	2021-10-13 20:45:58.697771134 -0600
e93fb7
+++ guava-31.0.1/guava/src/com/google/common/graph/Traverser.java	2021-10-13 20:45:58.830772325 -0600
e93fb7
@@ -61,9 +61,6 @@ import javax.annotation.CheckForNull;
e93fb7
  * @since 23.1
e93fb7
  */
e93fb7
 
e93fb7
-(
e93fb7
-    "Call forGraph or forTree, passing a lambda or a Graph with the desired edges (built with"
e93fb7
-        + " GraphBuilder)")
e93fb7
 @ElementTypesAreNonnullByDefault
e93fb7
 public abstract class Traverser<N> {
e93fb7
   private final SuccessorsFunction<N> successorFunction;
e93fb7
diff -up guava-31.0.1/guava/src/com/google/common/primitives/Doubles.java.multiline guava-31.0.1/guava/src/com/google/common/primitives/Doubles.java
e93fb7
--- guava-31.0.1/guava/src/com/google/common/primitives/Doubles.java.multiline	2021-10-13 20:45:58.704771196 -0600
e93fb7
+++ guava-31.0.1/guava/src/com/google/common/primitives/Doubles.java	2021-10-13 20:45:58.830772325 -0600
e93fb7
@@ -211,8 +211,6 @@ public final class Doubles extends Doubl
e93fb7
    *     the array
e93fb7
    * @throws IllegalArgumentException if {@code array} is empty
e93fb7
    */
e93fb7
-  (
e93fb7
-      "Available in GWT! Annotation is to avoid conflict with GWT specialization of base class.")
e93fb7
   public static double min(double... array) {
e93fb7
     checkArgument(array.length > 0);
e93fb7
     double min = array[0];
e93fb7
@@ -231,8 +229,6 @@ public final class Doubles extends Doubl
e93fb7
    *     in the array
e93fb7
    * @throws IllegalArgumentException if {@code array} is empty
e93fb7
    */
e93fb7
-  (
e93fb7
-      "Available in GWT! Annotation is to avoid conflict with GWT specialization of base class.")
e93fb7
   public static double max(double... array) {
e93fb7
     checkArgument(array.length > 0);
e93fb7
     double max = array[0];
e93fb7
diff -up guava-31.0.1/guava/src/com/google/common/primitives/Floats.java.multiline guava-31.0.1/guava/src/com/google/common/primitives/Floats.java
e93fb7
--- guava-31.0.1/guava/src/com/google/common/primitives/Floats.java.multiline	2021-10-13 20:45:58.703771187 -0600
e93fb7
+++ guava-31.0.1/guava/src/com/google/common/primitives/Floats.java	2021-10-13 20:45:58.830772325 -0600
e93fb7
@@ -206,8 +206,6 @@ public final class Floats extends Floats
e93fb7
    *     the array
e93fb7
    * @throws IllegalArgumentException if {@code array} is empty
e93fb7
    */
e93fb7
-  (
e93fb7
-      "Available in GWT! Annotation is to avoid conflict with GWT specialization of base class.")
e93fb7
   public static float min(float... array) {
e93fb7
     checkArgument(array.length > 0);
e93fb7
     float min = array[0];
e93fb7
@@ -226,8 +224,6 @@ public final class Floats extends Floats
e93fb7
    *     in the array
e93fb7
    * @throws IllegalArgumentException if {@code array} is empty
e93fb7
    */
e93fb7
-  (
e93fb7
-      "Available in GWT! Annotation is to avoid conflict with GWT specialization of base class.")
e93fb7
   public static float max(float... array) {
e93fb7
     checkArgument(array.length > 0);
e93fb7
     float max = array[0];
e93fb7
diff -up guava-31.0.1/guava/src/com/google/common/primitives/Ints.java.multiline guava-31.0.1/guava/src/com/google/common/primitives/Ints.java
e93fb7
--- guava-31.0.1/guava/src/com/google/common/primitives/Ints.java.multiline	2021-10-13 20:45:58.702771178 -0600
e93fb7
+++ guava-31.0.1/guava/src/com/google/common/primitives/Ints.java	2021-10-13 20:45:58.830772325 -0600
e93fb7
@@ -222,8 +222,6 @@ public final class Ints extends IntsMeth
e93fb7
    *     the array
e93fb7
    * @throws IllegalArgumentException if {@code array} is empty
e93fb7
    */
e93fb7
-  (
e93fb7
-      "Available in GWT! Annotation is to avoid conflict with GWT specialization of base class.")
e93fb7
   public static int min(int... array) {
e93fb7
     checkArgument(array.length > 0);
e93fb7
     int min = array[0];
e93fb7
@@ -243,8 +241,6 @@ public final class Ints extends IntsMeth
e93fb7
    *     in the array
e93fb7
    * @throws IllegalArgumentException if {@code array} is empty
e93fb7
    */
e93fb7
-  (
e93fb7
-      "Available in GWT! Annotation is to avoid conflict with GWT specialization of base class.")
e93fb7
   public static int max(int... array) {
e93fb7
     checkArgument(array.length > 0);
e93fb7
     int max = array[0];
e93fb7
diff -up guava-31.0.1/guava/src/com/google/common/primitives/Shorts.java.multiline guava-31.0.1/guava/src/com/google/common/primitives/Shorts.java
e93fb7
--- guava-31.0.1/guava/src/com/google/common/primitives/Shorts.java.multiline	2021-10-13 20:45:58.700771161 -0600
e93fb7
+++ guava-31.0.1/guava/src/com/google/common/primitives/Shorts.java	2021-10-13 20:45:58.830772325 -0600
e93fb7
@@ -219,8 +219,6 @@ public final class Shorts extends Shorts
e93fb7
    *     the array
e93fb7
    * @throws IllegalArgumentException if {@code array} is empty
e93fb7
    */
e93fb7
-  (
e93fb7
-      "Available in GWT! Annotation is to avoid conflict with GWT specialization of base class.")
e93fb7
   public static short min(short... array) {
e93fb7
     checkArgument(array.length > 0);
e93fb7
     short min = array[0];
e93fb7
@@ -240,8 +238,6 @@ public final class Shorts extends Shorts
e93fb7
    *     in the array
e93fb7
    * @throws IllegalArgumentException if {@code array} is empty
e93fb7
    */
e93fb7
-  (
e93fb7
-      "Available in GWT! Annotation is to avoid conflict with GWT specialization of base class.")
e93fb7
   public static short max(short... array) {
e93fb7
     checkArgument(array.length > 0);
e93fb7
     short max = array[0];
e93fb7
diff -up guava-31.0.1/guava/src/com/google/common/util/concurrent/ClosingFuture.java.multiline guava-31.0.1/guava/src/com/google/common/util/concurrent/ClosingFuture.java
e93fb7
--- guava-31.0.1/guava/src/com/google/common/util/concurrent/ClosingFuture.java.multiline	2021-10-13 20:45:58.686771035 -0600
e93fb7
+++ guava-31.0.1/guava/src/com/google/common/util/concurrent/ClosingFuture.java	2021-10-13 20:45:58.831772334 -0600
e93fb7
@@ -1229,9 +1229,6 @@ public final class ClosingFuture
e93fb7
    *           .closing(executor);
e93fb7
    * }
e93fb7
    */
e93fb7
-  // TODO(cpovirk): Use simple name instead of fully qualified after we stop building with JDK 8.
e93fb7
-  @com.google.errorprone.annotations.DoNotMock(
e93fb7
-      "Use ClosingFuture.whenAllSucceed() or .whenAllComplete() instead.")
e93fb7
   public static class Combiner {
e93fb7
 
e93fb7
     private final CloseableList closeables = new CloseableList();
e93fb7
diff -up guava-31.0.1/guava/src/com/google/common/util/concurrent/ListeningExecutorService.java.multiline guava-31.0.1/guava/src/com/google/common/util/concurrent/ListeningExecutorService.java
e93fb7
--- guava-31.0.1/guava/src/com/google/common/util/concurrent/ListeningExecutorService.java.multiline	2021-10-13 20:45:58.673770919 -0600
e93fb7
+++ guava-31.0.1/guava/src/com/google/common/util/concurrent/ListeningExecutorService.java	2021-10-13 20:45:58.831772334 -0600
e93fb7
@@ -33,10 +33,6 @@ import java.util.concurrent.TimeUnit;
e93fb7
  * @author Chris Povirk
e93fb7
  * @since 10.0
e93fb7
  */
e93fb7
-(
e93fb7
-    "Use TestingExecutors.sameThreadScheduledExecutor, or wrap a real Executor from "
e93fb7
-        + "java.util.concurrent.Executors with MoreExecutors.listeningDecorator")
e93fb7
-
e93fb7
 @ElementTypesAreNonnullByDefault
e93fb7
 public interface ListeningExecutorService extends ExecutorService {
e93fb7
   /**
e93fb7
diff -up guava-31.0.1/guava/target/classes/com/google/common/base/Strings.java.multiline guava-31.0.1/guava/target/classes/com/google/common/base/Strings.java
e93fb7
diff -up guava-31.0.1/guava/target/classes/com/google/common/collect/CompactHashMap.java.multiline guava-31.0.1/guava/target/classes/com/google/common/collect/CompactHashMap.java
e93fb7
diff -up guava-31.0.1/guava/target/classes/com/google/common/collect/CompactHashSet.java.multiline guava-31.0.1/guava/target/classes/com/google/common/collect/CompactHashSet.java
e93fb7
diff -up guava-31.0.1/guava/target/classes/com/google/common/collect/Streams.java.multiline guava-31.0.1/guava/target/classes/com/google/common/collect/Streams.java
e93fb7
diff -up guava-31.0.1/guava/target/classes/com/google/common/graph/Traverser.java.multiline guava-31.0.1/guava/target/classes/com/google/common/graph/Traverser.java
e93fb7
diff -up guava-31.0.1/guava/target/classes/com/google/common/primitives/Doubles.java.multiline guava-31.0.1/guava/target/classes/com/google/common/primitives/Doubles.java
e93fb7
diff -up guava-31.0.1/guava/target/classes/com/google/common/primitives/Floats.java.multiline guava-31.0.1/guava/target/classes/com/google/common/primitives/Floats.java
e93fb7
diff -up guava-31.0.1/guava/target/classes/com/google/common/primitives/Ints.java.multiline guava-31.0.1/guava/target/classes/com/google/common/primitives/Ints.java
e93fb7
diff -up guava-31.0.1/guava/target/classes/com/google/common/primitives/Shorts.java.multiline guava-31.0.1/guava/target/classes/com/google/common/primitives/Shorts.java
e93fb7
diff -up guava-31.0.1/guava/target/classes/com/google/common/util/concurrent/ClosingFuture.java.multiline guava-31.0.1/guava/target/classes/com/google/common/util/concurrent/ClosingFuture.java
e93fb7
diff -up guava-31.0.1/guava/target/classes/com/google/common/util/concurrent/ListeningExecutorService.java.multiline guava-31.0.1/guava/target/classes/com/google/common/util/concurrent/ListeningExecutorService.java