Specifically `sched_mode()` now returns `()` instead of the builder. This broke servo code using the following pattern: ``` rust task::task().sched_mode(Foo).spawn { .... } ``` EDIT(bblum): All methods seem to return `()`. They should all return Self except for the spawn methods.