File tree 1 file changed +2
-2
lines changed
src/library/scala/concurrent
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -160,13 +160,13 @@ object ExecutionContext {
160
160
*
161
161
* Any `NonFatal` or `InterruptedException`s will be reported to the `defaultReporter`.
162
162
*/
163
- final object parasitic extends ExecutionContextExecutor with BatchingExecutor {
163
+ object parasitic extends ExecutionContextExecutor with BatchingExecutor {
164
164
override final def submitForExecution (runnable : Runnable ): Unit = runnable.run()
165
165
override final def execute (runnable : Runnable ): Unit = submitSyncBatched(runnable)
166
166
override final def reportFailure (t : Throwable ): Unit = defaultReporter(t)
167
167
}
168
168
169
- final object Implicits {
169
+ object Implicits {
170
170
/**
171
171
* The implicit global `ExecutionContext`. Import `global` when you want to provide the global
172
172
* `ExecutionContext` implicitly.
You can’t perform that action at this time.
0 commit comments