Skip to content

Commit

Permalink
replace work{ t1 } by work{ t1.call() }
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelgruetter committed Nov 22, 2013
1 parent 00198ac commit 8567fcb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ trait Scheduler {
def scheduleRec(work: (=>Unit)=>Unit): Subscription = {
Subscription(asJavaScheduler.schedule(new Action1[Action0] {
def call(t1: Action0){
work{ t1 }
work{ t1.call() }
}
}))
//action1[action0]
Expand Down

0 comments on commit 8567fcb

Please sign in to comment.