Skip to content

Commit 6acef0d

Browse files
committed
add missing annotation
1 parent e3e824a commit 6acef0d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/io/reactivex/internal/operators/flowable/FlowableWithLatestFromMany.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public FlowableWithLatestFromMany(@NonNull Publisher<T> source, @NonNull Publish
5050
this.combiner = combiner;
5151
}
5252

53-
public FlowableWithLatestFromMany(@NonNull Publisher<T> source, @NonNull Iterable<? extends Publisher<?>> otherIterable, Function<? super Object[], R> combiner) {
53+
public FlowableWithLatestFromMany(@NonNull Publisher<T> source, @NonNull Iterable<? extends Publisher<?>> otherIterable, @NonNull Function<? super Object[], R> combiner) {
5454
super(source);
5555
this.otherArray = null;
5656
this.otherIterable = otherIterable;

0 commit comments

Comments
 (0)