Skip to content

Commit 78fee1f

Browse files
committed
Resolve conflicts
2 parents 9062cd8 + 4f86c8b commit 78fee1f

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

src/main/java/io/reactivex/Flowable.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -14180,7 +14180,7 @@ public final Completable switchMapCompletable(@NonNull Function<? super T, ? ext
1418014180
* <dt><b>Error handling:</b></dt>
1418114181
* <dd>Errors of this {@code Flowable} and all the {@code CompletableSource}s, who had the chance
1418214182
* to run to their completion, are delayed until
14183-
* all of the terminate in some fashion. At this point, if there was only one failure, the respective
14183+
* all of them terminate in some fashion. At this point, if there was only one failure, the respective
1418414184
* {@code Throwable} is emitted to the dowstream. It there were more than one failures, the
1418514185
* operator combines all {@code Throwable}s into a {@link io.reactivex.exceptions.CompositeException CompositeException}
1418614186
* and signals that to the downstream.

src/test/java/io/reactivex/InternalWrongNaming.java

+4-1
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,10 @@ public void flowableNoObserver() throws Exception {
185185
"FlowableConcatWithCompletable",
186186
"FlowableMergeWithSingle",
187187
"FlowableMergeWithMaybe",
188-
"FlowableMergeWithCompletable"
188+
"FlowableMergeWithCompletable",
189+
"FlowableSwitchMapCompletable",
190+
"FlowableSwitchMapSingle",
191+
"FlowableSwitchMapMaybe"
189192
);
190193
}
191194
}

0 commit comments

Comments
 (0)