Disable debugging of notification

This commit is contained in:
Benoit Marty 2023-05-24 16:35:06 +02:00 committed by Benoit Marty
parent e02ba42ea0
commit 1ac5f8e788

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"
}