@@ -7112,39 +7112,6 @@ public final <U> Observable<U> concatMapIterable(@NonNull Function<? super T, ?
7112
7112
return RxJavaPlugins.onAssembly(new ObservableFlattenIterable<>(this, mapper));
7113
7113
}
7114
7114
7115
- /**
7116
- * Returns an {@code Observable} that concatenate each item emitted by the current {@code Observable} with the values in an
7117
- * {@link Iterable} corresponding to that item that is generated by a selector.
7118
- * <p>
7119
- * <img width="640" height="275" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/concatMapIterable.o.png" alt="">
7120
- *
7121
- * <dl>
7122
- * <dt><b>Scheduler:</b></dt>
7123
- * <dd>{@code concatMapIterable} does not operate by default on a particular {@link Scheduler}.</dd>
7124
- * </dl>
7125
- *
7126
- * @param <U>
7127
- * the type of item emitted by the resulting {@code Observable}
7128
- * @param mapper
7129
- * a function that returns an {@code Iterable} sequence of values for when given an item emitted by the
7130
- * current {@code Observable}
7131
- * @param bufferSize
7132
- * the number of elements expected from the current {@code Observable} to be buffered
7133
- * @return an {@code Observable} that emits the results of concatenating the items emitted by the current {@code Observable} with
7134
- * the values in the {@code Iterable}s corresponding to those items
7135
- * @throws NullPointerException if {@code mapper} is {@code null}
7136
- * @throws IllegalArgumentException if {@code bufferSize} is non-positive
7137
- * @see <a href="http://reactivex.io/documentation/operators/flatmap.html">ReactiveX operators documentation: FlatMap</a>
7138
- */
7139
- @CheckReturnValue
7140
- @SchedulerSupport(SchedulerSupport.NONE)
7141
- @NonNull
7142
- public final <U> Observable<U> concatMapIterable(@NonNull Function<? super T, ? extends Iterable<? extends U>> mapper, int bufferSize) {
7143
- Objects.requireNonNull(mapper, "mapper is null");
7144
- ObjectHelper.verifyPositive(bufferSize, "bufferSize");
7145
- return concatMap(ObservableInternalHelper.flatMapIntoIterable(mapper), bufferSize);
7146
- }
7147
-
7148
7115
/**
7149
7116
* Maps the upstream items into {@link MaybeSource}s and subscribes to them one after the
7150
7117
* other succeeds or completes, emits their success value if available or terminates immediately if
0 commit comments