@@ -839,7 +839,6 @@ public static <T> Maybe<T> fromRunnable(final Runnable run) {
839839 return RxJavaPlugins.onAssembly(new MaybeFromRunnable<T>(run));
840840 }
841841
842-
843842 /**
844843 * Returns a {@code Maybe} that emits a specified item.
845844 * <p>
@@ -1238,7 +1237,6 @@ public static <T> Flowable<T> mergeArrayDelayError(MaybeSource<? extends T>... s
12381237 return Flowable.fromArray(sources).flatMap((Function)MaybeToPublisher.instance(), true, sources.length);
12391238 }
12401239
1241-
12421240 /**
12431241 * Flattens an Iterable of MaybeSources into one Flowable, in a way that allows a Subscriber to receive all
12441242 * successfully emitted items from each of the source MaybeSources without being interrupted by an error
@@ -1274,7 +1272,6 @@ public static <T> Flowable<T> mergeDelayError(Iterable<? extends MaybeSource<? e
12741272 return Flowable.fromIterable(sources).flatMap((Function)MaybeToPublisher.instance(), true);
12751273 }
12761274
1277-
12781275 /**
12791276 * Flattens a Publisher that emits MaybeSources into one Publisher, in a way that allows a Subscriber to
12801277 * receive all successfully emitted items from all of the source MaybeSources without being interrupted by
@@ -1310,7 +1307,6 @@ public static <T> Flowable<T> mergeDelayError(Publisher<? extends MaybeSource<?
13101307 return mergeDelayError(sources, Integer.MAX_VALUE);
13111308 }
13121309
1313-
13141310 /**
13151311 * Flattens a Publisher that emits MaybeSources into one Publisher, in a way that allows a Subscriber to
13161312 * receive all successfully emitted items from all of the source MaybeSources without being interrupted by
@@ -1432,7 +1428,6 @@ public static <T> Flowable<T> mergeDelayError(MaybeSource<? extends T> source1,
14321428 return mergeArrayDelayError(source1, source2, source3);
14331429 }
14341430
1435-
14361431 /**
14371432 * Flattens four MaybeSources into one Flowable, in a way that allows a Subscriber to receive all
14381433 * successfully emitted items from all of the source MaybeSources without being interrupted by an error
@@ -1503,7 +1498,6 @@ public static <T> Maybe<T> never() {
15031498 return RxJavaPlugins.onAssembly((Maybe<T>)MaybeNever.INSTANCE);
15041499 }
15051500
1506-
15071501 /**
15081502 * Returns a Single that emits a Boolean value that indicates whether two MaybeSource sequences are the
15091503 * same by comparing the items emitted by each MaybeSource pairwise.
@@ -2388,7 +2382,6 @@ public final <R> Maybe<R> concatMap(Function<? super T, ? extends MaybeSource<?
23882382 return RxJavaPlugins.onAssembly(new MaybeFlatten<T, R>(this, mapper));
23892383 }
23902384
2391-
23922385 /**
23932386 * Returns a Flowable that emits the items emitted from the current MaybeSource, then the next, one after
23942387 * the other, without interleaving them.
@@ -2486,7 +2479,6 @@ public final Maybe<T> defaultIfEmpty(T defaultItem) {
24862479 return switchIfEmpty(just(defaultItem));
24872480 }
24882481
2489-
24902482 /**
24912483 * Returns a Maybe that signals the events emitted by the source Maybe shifted forward in time by a
24922484 * specified delay.
@@ -3838,7 +3830,6 @@ public final Flowable<T> repeatWhen(final Function<? super Flowable<Object>, ? e
38383830 return toFlowable().repeatWhen(handler);
38393831 }
38403832
3841-
38423833 /**
38433834 * Returns a Maybe that mirrors the source Maybe, resubscribing to it if it calls {@code onError}
38443835 * (infinite retry count).
0 commit comments