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 @@ -338,7 +338,7 @@ internal class CalculatorStoreFactory(private val storeFactory: StoreFactory) {
338338
339339 // ...
340340
341- private object BootstrapperImpl : ReaktiveBootstrapper<Action>() {
341+ private class BootstrapperImpl : ReaktiveBootstrapper <Action >() {
342342 override fun invoke () {
343343 singleFromFunction { (1L .. 1000000 .toLong()).sum() }
344344 .subscribeOn(computationScheduler)
@@ -382,7 +382,7 @@ internal class CalculatorStoreFactory(private val storeFactory: StoreFactory) {
382382
383383 // ...
384384
385- private object BootstrapperImpl : SuspendBootstrapper<Action>() {
385+ private class BootstrapperImpl : SuspendBootstrapper <Action >() {
386386 override suspend fun bootstrap () {
387387 val sum = withContext(Dispatchers .Default ) { (1L .. 1000000 .toLong()).sum() }
388388 dispatch(Action .SetValue (sum))
You can’t perform that action at this time.
0 commit comments