Skip to content

Commit 51113b7

Browse files
committed
Fixes indent.
1 parent 6da4b03 commit 51113b7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/rx/schedulers/TrampolineScheduler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ private Subscription enqueue(Action0 action, long execTime) {
7575
do {
7676
final TimedAction polled = queue.poll();
7777
if (polled != null) {
78-
polled.action.call();
78+
polled.action.call();
7979
}
8080
} while (wip.decrementAndGet() > 0);
8181
return Subscriptions.unsubscribed();

0 commit comments

Comments
 (0)