Fixes after rebase
This commit is contained in:
parent
ddf9e5055e
commit
e8328858ab
117 changed files with 310 additions and 295 deletions
|
|
@ -19,7 +19,7 @@ import kotlinx.coroutines.flow.MutableSharedFlow
|
|||
@SingleIn(AppScope::class)
|
||||
@ContributesBinding(AppScope::class)
|
||||
@Inject
|
||||
class DefaultCacheService() : CacheService {
|
||||
class DefaultCacheService : CacheService {
|
||||
private val _clearedCacheEventFlow = MutableSharedFlow<SessionId>(0)
|
||||
override val clearedCacheEventFlow: Flow<SessionId> = _clearedCacheEventFlow
|
||||
|
||||
|
|
|
|||
|
|
@ -18,7 +18,7 @@ import io.element.android.libraries.architecture.createNode
|
|||
|
||||
@ContributesBinding(AppScope::class)
|
||||
@Inject
|
||||
class DefaultPreferencesEntryPoint() : PreferencesEntryPoint {
|
||||
class DefaultPreferencesEntryPoint : PreferencesEntryPoint {
|
||||
override fun nodeBuilder(parentNode: Node, buildContext: BuildContext): PreferencesEntryPoint.NodeBuilder {
|
||||
return object : PreferencesEntryPoint.NodeBuilder {
|
||||
val plugins = ArrayList<Plugin>()
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@ import dev.zacsweers.metro.Inject
|
|||
import io.element.android.libraries.architecture.Presenter
|
||||
|
||||
@Inject
|
||||
class AboutPresenter() : Presenter<AboutState> {
|
||||
class AboutPresenter : Presenter<AboutState> {
|
||||
@Composable
|
||||
override fun present(): AboutState {
|
||||
return AboutState(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue