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 850deea commit 039a703Copy full SHA for 039a703
src/main/java/rx/internal/operators/OperatorZip.java
@@ -246,7 +246,7 @@ void tick() {
246
}
247
248
// we only emit if requested > 0 and have all values available
249
- if (requested.get() > 0 && allHaveValues) {
+ if (allHaveValues && requested.get() > 0) {
250
try {
251
// all have something so emit
252
child.onNext(zipFunction.call(vs));
0 commit comments