Skip to content

Commit bc1ed77

Browse files
committed
javadocs: adding (+ correcting one) @SInCE annotations
1 parent c34456c commit bc1ed77

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/main/java/rx/Observable.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4538,7 +4538,7 @@ public final <R> Observable<R> flatMap(Func1<? super T, ? extends Observable<? e
45384538
* by the source Observable and merging the results of the Observables obtained from this
45394539
* transformation
45404540
* @see <a href="http://reactivex.io/documentation/operators/flatmap.html">ReactiveX operators documentation: FlatMap</a>
4541-
* @since 1.0.6
4541+
* @since (if this graduates from Experimental/Beta to supported, replace this parenthetical with the release number)
45424542
*/
45434543
@Beta
45444544
public final <R> Observable<R> flatMap(Func1<? super T, ? extends Observable<? extends R>> func, int maxConcurrent) {
@@ -4601,6 +4601,7 @@ public final <R> Observable<R> flatMap(
46014601
* @return an Observable that emits the results of merging the Observables returned from applying the
46024602
* specified functions to the emissions and notifications of the source Observable
46034603
* @see <a href="http://reactivex.io/documentation/operators/flatmap.html">ReactiveX operators documentation: FlatMap</a>
4604+
* @since (if this graduates from Experimental/Beta to supported, replace this parenthetical with the release number)
46044605
*/
46054606
@Beta
46064607
public final <R> Observable<R> flatMap(
@@ -4662,6 +4663,7 @@ public final <U, R> Observable<R> flatMap(final Func1<? super T, ? extends Obser
46624663
* @return an Observable that emits the results of applying a function to a pair of values emitted by the
46634664
* source Observable and the collection Observable
46644665
* @see <a href="http://reactivex.io/documentation/operators/flatmap.html">ReactiveX operators documentation: FlatMap</a>
4666+
* @since (if this graduates from Experimental/Beta to supported, replace this parenthetical with the release number)
46654667
*/
46664668
@Beta
46674669
public final <U, R> Observable<R> flatMap(final Func1<? super T, ? extends Observable<? extends U>> collectionSelector,

0 commit comments

Comments
 (0)