From 9a0fdd5cd1fb291e0df5c10a579e6a54ba51d090 Mon Sep 17 00:00:00 2001 From: Dave Moten Date: Thu, 22 Feb 2018 08:26:37 +1100 Subject: [PATCH] group by map factory test and javadoc should use latest guava 24.0-jre, set since to 2.1.10 --- build.gradle | 2 +- src/main/java/io/reactivex/Flowable.java | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/build.gradle b/build.gradle index cdd85fd3b88..ce96b1baefa 100644 --- a/build.gradle +++ b/build.gradle @@ -56,7 +56,7 @@ def reactiveStreamsVersion = "1.0.2" def mockitoVersion = "2.1.0" def jmhLibVersion = "1.19" def testNgVersion = "6.11" -def guavaVersion = "19.0" +def guavaVersion = "24.0-jre" // -------------------------------------- repositories { diff --git a/src/main/java/io/reactivex/Flowable.java b/src/main/java/io/reactivex/Flowable.java index 3639227a9d1..aeae8a32577 100644 --- a/src/main/java/io/reactivex/Flowable.java +++ b/src/main/java/io/reactivex/Flowable.java @@ -9729,7 +9729,7 @@ public final Flowable> groupBy(FunctionThe map created by an {@code evictingMapFactory} must be thread-safe. * - *

An example of an {@code evictingMapFactory} using CacheBuilder from the Guava library is below: + *

An example of an {@code evictingMapFactory} using CacheBuilder from the Guava library is below: * *

      * Function<Consumer<Object>, Map<Integer, Object>> evictingMapFactory = 
@@ -9789,7 +9789,7 @@ public final  Flowable> groupBy(Function} with the entry value (not the key!) when
-     *            an entry in this map has been evicted.. The next source emission will bring about the
+     *            an entry in this map has been evicted. The next source emission will bring about the
      *            completion of the evicted {@link GroupedFlowable}s. See example above.
      * @param 
      *            the key type
@@ -9800,7 +9800,7 @@ public final  Flowable> groupBy(FunctionReactiveX operators documentation: GroupBy
      *
-     * @since 2.1.11
+     * @since 2.1.10
      */
     @CheckReturnValue
     @BackpressureSupport(BackpressureKind.FULL)