Skip to content

Commit 6b2cf34

Browse files
committedFeb 13, 2020
Missing version tag from Single.concatMaps
1 parent b3ad075 commit 6b2cf34

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed
 

‎src/main/java/io/reactivex/rxjava3/core/Single.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2699,6 +2699,7 @@ public final <U> Single<U> cast(@NonNull Class<? extends U> clazz) {
26992699
* @return the new {@code Single} returned from {@code mapper} when applied to the item emitted by the current {@code Single}
27002700
* @throws NullPointerException if {@code mapper} is {@code null}
27012701
* @see <a href="http://reactivex.io/documentation/operators/flatmap.html">ReactiveX operators documentation: FlatMap</a>
2702+
* @since 3.0.0
27022703
*/
27032704
@CheckReturnValue
27042705
@NonNull
@@ -2753,6 +2754,7 @@ public final Completable concatMapCompletable(@NonNull Function<? super T, ? ext
27532754
* @return the new {@code Maybe} returned from {@code mapper} when applied to the item emitted by the current {@code Single}
27542755
* @throws NullPointerException if {@code mapper} is {@code null}
27552756
* @see <a href="http://reactivex.io/documentation/operators/flatmap.html">ReactiveX operators documentation: FlatMap</a>
2757+
* @since 3.0.0
27562758
*/
27572759
@CheckReturnValue
27582760
@NonNull

0 commit comments

Comments
 (0)
Please sign in to comment.