File tree Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -3749,20 +3749,19 @@ public final Observable<T> defaultIfEmpty(T defaultValue) {
3749
3749
}
3750
3750
3751
3751
/**
3752
- * Returns an Observable that emits the items emitted by the source Observable or the items of an alternate Observable if the source Observable
3753
- * is empty.
3752
+ * Returns an Observable that emits the items emitted by the source Observable or the items of an alternate
3753
+ * Observable if the source Observable is empty.
3754
3754
* <p/>
3755
3755
* <dl>
3756
3756
* <dt><b>Scheduler:</b></dt>
3757
3757
* <dd>{@code switchIfEmpty} does not operate by default on a particular {@link Scheduler}.</dd>
3758
- * <dt><b>Beta:</b></dt>
3759
- * <dd>{@code switchIfEmpty} is currently in {@link rx.annotations.Beta} and subject to change.</dd>
3760
3758
* </dl>
3761
3759
*
3762
3760
* @param alternate
3763
3761
* the alternate Observable to subscribe to if the source does not emit any items
3764
- * @return an Observable that emits the items emitted by the source Observable or the items of an alternate Observable if the source Observable
3765
- * is empty.
3762
+ * @return an Observable that emits the items emitted by the source Observable or the items of an
3763
+ * alternate Observable if the source Observable is empty.
3764
+ * @since (if this graduates from Experimental/Beta to supported, replace this parenthetical with the release number)
3766
3765
*/
3767
3766
@ Experimental
3768
3767
public final Observable <T > switchIfEmpty (Observable <? extends T > alternate ) {
You can’t perform that action at this time.
0 commit comments