Disable debugging of notification

This commit is contained in:
Benoit Marty 2023-05-24 16:35:06 +02:00 committed by Benoit Marty
parent 2fb835ec77
commit 44c0466b09

View file

@ -16,6 +16,6 @@
package io.element.android.libraries.push.impl.notifications.debug
fun CharSequence.annotateForDebug(prefix: Int): CharSequence {
return "$prefix-$this"
fun CharSequence.annotateForDebug(@Suppress("UNUSED_PARAMETER") prefix: Int): CharSequence {
return this // "$prefix-$this"
}