Skip to content

Commit

Permalink
Merge pull request #827 from Applied-Duality/BugFixesSchedulers
Browse files Browse the repository at this point in the history
Fixed cut & paster error in io scheduler
  • Loading branch information
benjchristensen committed Feb 6, 2014
2 parents 8bb05b5 + c330e6d commit d93dc37
Showing 1 changed file with 2 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,10 @@ object ComputationScheduler {
*
* @return { @link Scheduler} for computation-bound work.
*/
def apply(): IOScheduler = {
new IOScheduler(rx.schedulers.Schedulers.computation())
def apply(): ComputationScheduler = {
new ComputationScheduler(rx.schedulers.Schedulers.computation())
}
}

/**
* Created by netflix on 2/5/14.
*/
class ComputationScheduler private[scala] (val asJavaScheduler: rx.Scheduler)
extends Scheduler {}

0 comments on commit d93dc37

Please sign in to comment.