Skip to content

Commit 429611e

Browse files
committed
Trying to fix a build
1 parent f1be5f4 commit 429611e

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

rxjava-core/src/main/java/rx/operators/ScheduledObserver.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,6 @@ private void processQueue() {
6464
scheduler.schedule(new Action0() {
6565
@Override
6666
public void call() {
67-
int count = counter.decrementAndGet();
68-
6967
Notification<T> not = queue.poll();
7068

7169
switch (not.getKind()) {
@@ -83,6 +81,7 @@ public void call() {
8381

8482
}
8583

84+
int count = counter.decrementAndGet();
8685
if (count > 0) {
8786
scheduler.schedule(this);
8887
}

0 commit comments

Comments
 (0)