Merge pull request #5738 from element-hq/renovate/ktlint

fix(deps): update dependency com.pinterest.ktlint:ktlint-cli to v1.8.0
This commit is contained in:
Benoit Marty 2025-11-19 12:16:05 +01:00 committed by GitHub
commit c8604c262a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 8 additions and 13 deletions

View file

@ -72,10 +72,6 @@ class DefaultNotificationChannels(
createNotificationChannels()
}
/* ==========================================================================================
* Channel names
* ========================================================================================== */
/**
* Create notification channels.
*/
@ -110,10 +106,7 @@ class DefaultNotificationChannels(
}
}
/**
* Default notification importance: shows everywhere, makes noise, but does not visually
* intrude.
*/
// Default notification importance: shows everywhere, makes noise, but does not visually intrude.
notificationManager.createNotificationChannel(
NotificationChannelCompat.Builder(
NOISY_NOTIFICATION_CHANNEL_ID,
@ -138,9 +131,7 @@ class DefaultNotificationChannels(
.build()
)
/**
* Low notification importance: shows everywhere, but is not intrusive.
*/
// Low notification importance: shows everywhere, but is not intrusive.
notificationManager.createNotificationChannel(
NotificationChannelCompat.Builder(
SILENT_NOTIFICATION_CHANNEL_ID,