Skip to content

Commit 83f78c4

Browse files
committed
add @SInCE annotations to javadocs of new ...With() instance variants
1 parent 0398453 commit 83f78c4

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

rxjava-core/src/main/java/rx/Observable.java

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3084,6 +3084,7 @@ public final Observable<Boolean> all(Func1<? super T, Boolean> predicate) {
30843084
* emitted an item
30853085
* @see <a href="https://github.com/Netflix/RxJava/wiki/Conditional-and-Boolean-Operators#wiki-amb">RxJava Wiki: amb()</a>
30863086
* @see <a href="http://msdn.microsoft.com/en-us/library/hh229733.aspx">MSDN: Observable.Amb</a>
3087+
* @since 0.20
30873088
*/
30883089
public final Observable<T> ambWith(Observable<? extends T> t1) {
30893090
return amb(this, t1);
@@ -3495,8 +3496,8 @@ public final <R> Observable<R> concatMap(Func1<? super T, ? extends Observable<?
34953496
}
34963497

34973498
/**
3498-
* Returns an Observable that emits the items emitted from the current Observable, then the next, one after the other, without
3499-
* interleaving them.
3499+
* Returns an Observable that emits the items emitted from the current Observable, then the next, one after
3500+
* the other, without interleaving them.
35003501
* <p>
35013502
* <img width="640" height="380" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/concat.png">
35023503
* <p>
@@ -3508,6 +3509,7 @@ public final <R> Observable<R> concatMap(Func1<? super T, ? extends Observable<?
35083509
* without interleaving them
35093510
* @see <a href="https://github.com/Netflix/RxJava/wiki/Mathematical-and-Aggregate-Operators#wiki-concat">RxJava Wiki: concat()</a>
35103511
* @see <a href="http://msdn.microsoft.com/en-us/library/system.reactive.linq.observable.concat.aspx">MSDN: Observable.Concat</a>
3512+
* @since 0.20
35113513
*/
35123514
public final Observable<T> concatWith(Observable<? extends T> t1) {
35133515
return concat(this, t1);
@@ -4819,6 +4821,7 @@ public final <U, R> Observable<R> mergeMapIterable(Func1<? super T, ? extends It
48194821
* @return an Observable that emits all of the items emitted by the source Observables
48204822
* @see <a href="https://github.com/Netflix/RxJava/wiki/Combining-Observables#wiki-merge">RxJava Wiki: merge()</a>
48214823
* @see <a href="http://msdn.microsoft.com/en-us/library/hh229099.aspx">MSDN: Observable.Merge</a>
4824+
* @since 0.20
48224825
*/
48234826
public final Observable<T> mergeWith(Observable<? extends T> t1) {
48244827
return merge(this, t1);

0 commit comments

Comments
 (0)