Fix detekt

This commit is contained in:
ganfra 2023-01-16 18:17:56 +01:00
parent b622ad6000
commit 0fc8ed9b33
4 changed files with 24 additions and 22 deletions

View file

@ -76,7 +76,8 @@ class MessageComposerPresenter @Inject constructor(
value = MessageComposerMode.Normal("") value = MessageComposerMode.Normal("")
} }
private fun CoroutineScope.sendMessage(text: String, composerMode: MutableState<MessageComposerMode>, textState: MutableState<StableCharSequence>) = launch { private fun CoroutineScope.sendMessage(text: String, composerMode: MutableState<MessageComposerMode>, textState: MutableState<StableCharSequence>) =
launch {
val capturedMode = composerMode.value val capturedMode = composerMode.value
// Reset composer right away // Reset composer right away
textState.value = "".toStableCharSequence() textState.value = "".toStableCharSequence()

View file

@ -52,7 +52,10 @@ class TimelinePresenter @Inject constructor(
private val timelineItemsFactory = private val timelineItemsFactory =
TimelineItemsFactory(matrixItemHelper, room, coroutineDispatchers.computation) TimelineItemsFactory(matrixItemHelper, room, coroutineDispatchers.computation)
private class TimelineCallback(private val coroutineScope: CoroutineScope, private val timelineItemsFactory: TimelineItemsFactory) : MatrixTimeline.Callback { private class TimelineCallback(
private val coroutineScope: CoroutineScope,
private val timelineItemsFactory: TimelineItemsFactory,
) : MatrixTimeline.Callback {
override fun onPushedTimelineItem(timelineItem: MatrixTimelineItem) { override fun onPushedTimelineItem(timelineItem: MatrixTimelineItem) {
coroutineScope.launch { coroutineScope.launch {
timelineItemsFactory.pushItem(timelineItem) timelineItemsFactory.pushItem(timelineItem)

View file

@ -24,7 +24,6 @@ import io.element.android.x.core.di.DaggerComponentOwner
inline fun <reified T : Any> Node.bindings() = bindings(T::class.java) inline fun <reified T : Any> Node.bindings() = bindings(T::class.java)
inline fun <reified T : Any> Context.bindings() = bindings(T::class.java) inline fun <reified T : Any> Context.bindings() = bindings(T::class.java)
/** Use no-arg extension function instead: [Context.bindings] */
fun <T : Any> Context.bindings(klass: Class<T>): T { fun <T : Any> Context.bindings(klass: Class<T>): T {
// search dagger components in the context hierarchy // search dagger components in the context hierarchy
return generateSequence(this) { (it as? ContextWrapper)?.baseContext } return generateSequence(this) { (it as? ContextWrapper)?.baseContext }
@ -37,7 +36,6 @@ fun <T : Any> Context.bindings(klass: Class<T>): T {
?: error("Unable to find bindings for ${klass.name}") ?: error("Unable to find bindings for ${klass.name}")
} }
/** Use no-arg extension function instead: [Node.bindings] */
fun <T : Any> Node.bindings(klass: Class<T>): T { fun <T : Any> Node.bindings(klass: Class<T>): T {
// search dagger components in node hierarchy // search dagger components in node hierarchy
return generateSequence(this, Node::parent) return generateSequence(this, Node::parent)

View file

@ -1,5 +1,5 @@
/* /*
* Copyright 2019 New Vector Ltd * Copyright (c) 2023 New Vector Ltd
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.