From 1ac5f8e788bbc672fcfba9e1170f75f6664e1a35 Mon Sep 17 00:00:00 2001 From: Benoit Marty Date: Wed, 24 May 2023 16:35:06 +0200 Subject: [PATCH] Disable debugging of notification --- .../push/impl/notifications/debug/DebugNotification.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libraries/push/impl/src/main/kotlin/io/element/android/libraries/push/impl/notifications/debug/DebugNotification.kt b/libraries/push/impl/src/main/kotlin/io/element/android/libraries/push/impl/notifications/debug/DebugNotification.kt index eca99394f6..37f33e1188 100644 --- a/libraries/push/impl/src/main/kotlin/io/element/android/libraries/push/impl/notifications/debug/DebugNotification.kt +++ b/libraries/push/impl/src/main/kotlin/io/element/android/libraries/push/impl/notifications/debug/DebugNotification.kt @@ -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" }