Create const for diagnostic tag.
This commit is contained in:
parent
f0e42a70fb
commit
55517e5cb1
1 changed files with 3 additions and 2 deletions
|
|
@ -46,7 +46,7 @@ class DefaultNotificationDisplayer(
|
||||||
|
|
||||||
override fun displayDiagnosticNotification(notification: Notification): Boolean {
|
override fun displayDiagnosticNotification(notification: Notification): Boolean {
|
||||||
return showNotification(
|
return showNotification(
|
||||||
tag = "DIAGNOSTIC",
|
tag = TAG_DIAGNOSTIC,
|
||||||
id = NOTIFICATION_ID_DIAGNOSTIC,
|
id = NOTIFICATION_ID_DIAGNOSTIC,
|
||||||
notification = notification
|
notification = notification
|
||||||
)
|
)
|
||||||
|
|
@ -54,12 +54,13 @@ class DefaultNotificationDisplayer(
|
||||||
|
|
||||||
override fun dismissDiagnosticNotification() {
|
override fun dismissDiagnosticNotification() {
|
||||||
cancelNotification(
|
cancelNotification(
|
||||||
tag = "DIAGNOSTIC",
|
tag = TAG_DIAGNOSTIC,
|
||||||
id = NOTIFICATION_ID_DIAGNOSTIC
|
id = NOTIFICATION_ID_DIAGNOSTIC
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
companion object {
|
companion object {
|
||||||
|
private const val TAG_DIAGNOSTIC = "DIAGNOSTIC"
|
||||||
/* ==========================================================================================
|
/* ==========================================================================================
|
||||||
* IDs for notifications
|
* IDs for notifications
|
||||||
* ========================================================================================== */
|
* ========================================================================================== */
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue