Skip to content

Commit 0de7fcc

Browse files
committed
fix: detekt errors
1 parent 8e4b846 commit 0de7fcc

File tree

6 files changed

+6
-0
lines changed

6 files changed

+6
-0
lines changed

core/ui/compose/designsystem/src/main/kotlin/net/thunderbird/core/ui/compose/designsystem/organism/message/ActiveMessageItem.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ import net.thunderbird.core.ui.compose.designsystem.molecule.message.MessageItem
3434
* @param swapSenderWithSubject If `true`, the sender and subject will be swapped in their display positions.
3535
* Defaults to `false`.
3636
*/
37+
@Suppress("LongParameterList")
3738
@Composable
3839
fun ActiveMessageItem(
3940
sender: String,

core/ui/compose/designsystem/src/main/kotlin/net/thunderbird/core/ui/compose/designsystem/organism/message/JunkMessageItem.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ import app.k9mail.core.ui.compose.theme2.MainTheme
1111
import kotlinx.datetime.LocalDateTime
1212
import net.thunderbird.core.ui.compose.designsystem.molecule.message.MessageItemSenderBodyMedium
1313

14+
@Suppress("LongParameterList")
1415
@Composable
1516
fun JunkMessageItem(
1617
sender: String,

core/ui/compose/designsystem/src/main/kotlin/net/thunderbird/core/ui/compose/designsystem/organism/message/MessageItem.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ private const val WEEK_DAYS = 7
8383
* Defaults to [MessageItemDefaults.defaultContentPadding].
8484
* @see MessageItemDefaults
8585
*/
86+
@Suppress("LongParameterList")
8687
@Composable
8788
internal fun MessageItem(
8889
leading: @Composable () -> Unit,

core/ui/compose/designsystem/src/main/kotlin/net/thunderbird/core/ui/compose/designsystem/organism/message/NewMessageItem.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ import net.thunderbird.core.ui.compose.designsystem.molecule.message.MessageItem
3939
* @param swapSenderWithSubject If `true`, the sender and subject will be swapped in their display positions.
4040
* Defaults to `false`.
4141
*/
42+
@Suppress("LongParameterList")
4243
@Composable
4344
fun NewMessageItem(
4445
sender: String,

core/ui/compose/designsystem/src/main/kotlin/net/thunderbird/core/ui/compose/designsystem/organism/message/ReadMessageItem.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ import net.thunderbird.core.ui.compose.designsystem.molecule.message.MessageItem
3333
* @param swapSenderWithSubject If `true`, the sender and subject will be swapped in their display positions.
3434
* Defaults to `false`.
3535
*/
36+
@Suppress("LongParameterList")
3637
@Composable
3738
fun ReadMessageItem(
3839
sender: String,

core/ui/compose/designsystem/src/main/kotlin/net/thunderbird/core/ui/compose/designsystem/organism/message/UnreadMessageItem.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ import net.thunderbird.core.ui.compose.designsystem.molecule.message.MessageItem
3939
* @param swapSenderWithSubject If `true`, the sender and subject will be swapped in their display positions.
4040
* Defaults to `false`.
4141
*/
42+
@Suppress("LongParameterList")
4243
@Composable
4344
fun UnreadMessageItem(
4445
sender: String,

0 commit comments

Comments
 (0)