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 30b9296 commit b0aeb62Copy full SHA for b0aeb62
src/main/java/rx/internal/operators/OperatorBufferWithTime.java
@@ -75,7 +75,7 @@ public Subscriber<? super T> call(final Subscriber<? super List<T>> child) {
75
SerializedSubscriber<List<T>> serialized = new SerializedSubscriber<List<T>>(child);
76
77
if (timespan == timeshift) {
78
- ExactSubscriber bsub = new ExactSubscriber(serialized, inner);
+ ExactSubscriber bsub = new ExactSubscriber(serialized, inner);
79
bsub.add(inner);
80
child.add(bsub);
81
bsub.scheduleExact();
0 commit comments