Fix warning (suppress unused param for now, EAX does not support sticker right now.)

This commit is contained in:
Benoit Marty
2023-07-20 15:46:41 +02:00
parent 45f8f134ae
commit dc9212c559

View File

@@ -23,7 +23,7 @@ import javax.inject.Inject
class TimelineItemContentStickerFactory @Inject constructor() {
fun create(content: StickerContent): TimelineItemEventContent {
fun create(@Suppress("UNUSED_PARAMETER") content: StickerContent): TimelineItemEventContent {
return TimelineItemUnknownContent
}
}