We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 13cd6a9 commit f109b3eCopy full SHA for f109b3e
rxjava-core/src/main/java/rx/operators/OperationZip.java
@@ -445,8 +445,9 @@ public void onNext(T value) {
445
if (io.done) {
446
observer.onCompleted();
447
cancel.unsubscribe();
448
+ return;
449
}
- return;
450
+ continue;
451
452
Object v = io.queue.peek();
453
if (v == NULL_SENTINEL) {
@@ -459,6 +460,8 @@ public void onNext(T value) {
459
460
io.queue.poll();
461
462
observer.onNext(values);
463
+ } else {
464
+ break;
465
466
467
} finally {
0 commit comments