Remove teamfood override for NOTIFICATION_MEMORY_LOGGING_ENABLED

This cleans up client-side exception for this flag and only uses server
side toggle.

Bug: 271814457
Test: compiled code and tested flag via adb toggle
Change-Id: Id59522b9c7aac3a4a639c0fd9bce596729cd5d93
This commit is contained in:
Jernej Virag
2023-03-06 12:15:10 +01:00
parent a2c6c3ac38
commit 796874768d

View File

@@ -74,8 +74,12 @@ object Flags {
val NOTIFICATION_MEMORY_MONITOR_ENABLED =
releasedFlag(112, "notification_memory_monitor_enabled")
/**
* This flag is server-controlled and should stay as [unreleasedFlag] since we never want to
* enable it on release builds.
*/
val NOTIFICATION_MEMORY_LOGGING_ENABLED =
unreleasedFlag(119, "notification_memory_logging_enabled", teamfood = true)
unreleasedFlag(119, "notification_memory_logging_enabled")
// TODO(b/254512731): Tracking Bug
@JvmField val NOTIFICATION_DISMISSAL_FADE = releasedFlag(113, "notification_dismissal_fade")