Create const for diagnostic tag.
This commit is contained in:
committed by
Benoit Marty
parent
6fe85dc579
commit
f4f623c417
+3
-2
@@ -46,7 +46,7 @@ class DefaultNotificationDisplayer(
|
||||
|
||||
override fun displayDiagnosticNotification(notification: Notification): Boolean {
|
||||
return showNotification(
|
||||
tag = "DIAGNOSTIC",
|
||||
tag = TAG_DIAGNOSTIC,
|
||||
id = NOTIFICATION_ID_DIAGNOSTIC,
|
||||
notification = notification
|
||||
)
|
||||
@@ -54,12 +54,13 @@ class DefaultNotificationDisplayer(
|
||||
|
||||
override fun dismissDiagnosticNotification() {
|
||||
cancelNotification(
|
||||
tag = "DIAGNOSTIC",
|
||||
tag = TAG_DIAGNOSTIC,
|
||||
id = NOTIFICATION_ID_DIAGNOSTIC
|
||||
)
|
||||
}
|
||||
|
||||
companion object {
|
||||
private const val TAG_DIAGNOSTIC = "DIAGNOSTIC"
|
||||
/* ==========================================================================================
|
||||
* IDs for notifications
|
||||
* ========================================================================================== */
|
||||
|
||||
Reference in New Issue
Block a user