File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -352,7 +352,7 @@ internal class CalculatorStoreFactory(private val storeFactory: StoreFactory) {
352352
353353 // ...
354354
355- private object BootstrapperImpl : ReaktiveBootstrapper<Action>() {
355+ private class BootstrapperImpl : ReaktiveBootstrapper <Action >() {
356356 override fun invoke () {
357357 singleFromFunction { (1L .. 1000000 .toLong()).sum() }
358358 .subscribeOn(computationScheduler)
@@ -398,7 +398,7 @@ internal class CalculatorStoreFactory(private val storeFactory: StoreFactory) {
398398
399399 // ...
400400
401- private object BootstrapperImpl : CoroutineBootstrapper<Action>() {
401+ private class BootstrapperImpl : CoroutineBootstrapper <Action >() {
402402 override fun invoke () {
403403 scope.launch {
404404 val sum = withContext(Dispatchers .Default ) { (1L .. 1000000 .toLong()).sum() }
You can’t perform that action at this time.
0 commit comments