Skip to content

Commit

Permalink
Scheduler.Inner -> Scheduler.Worker
Browse files Browse the repository at this point in the history
  • Loading branch information
benjchristensen committed Apr 23, 2014
1 parent 57f0697 commit 7a9cabe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/rx/quasar/NewFiberScheduler.java
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,12 @@ private NewFiberScheduler() {
}

@Override
public Inner createInner() {
public Worker createWorker() {
return new EventLoopScheduler();
}


private class EventLoopScheduler extends Scheduler.Inner implements Subscription {
private class EventLoopScheduler extends Scheduler.Worker implements Subscription {
private final CompositeSubscription innerSubscription = new CompositeSubscription();

private EventLoopScheduler() {
Expand Down

0 comments on commit 7a9cabe

Please sign in to comment.