diff options
| author | 2023-04-24 14:17:02 +0200 | |
|---|---|---|
| committer | 2023-04-24 12:36:02 +0000 | |
| commit | db090e86ac7c8db15cda055fa256c70592ecb19b (patch) | |
| tree | 42ec666327bf365e1feef366f12ed118dfe66021 | |
| parent | f0a411d69cea73756492e97a4ae86c7b06315fc8 (diff) | |
Enable NO_SORT_BY_INTERRUPTIVENESS
Also fix incorrect Javadoc for devFlag() -- they are disabled by default.
Fixes: 204367726
Test: atest NotificationComparatorTest & manual
Change-Id: Iae7d49d5dee000a9614289ee88ad2e1a604235db
| -rw-r--r-- | core/java/com/android/internal/config/sysui/SystemUiSystemPropertiesFlags.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/java/com/android/internal/config/sysui/SystemUiSystemPropertiesFlags.java b/core/java/com/android/internal/config/sysui/SystemUiSystemPropertiesFlags.java index 853fe2f114f7..86c2893c9fab 100644 --- a/core/java/com/android/internal/config/sysui/SystemUiSystemPropertiesFlags.java +++ b/core/java/com/android/internal/config/sysui/SystemUiSystemPropertiesFlags.java @@ -76,7 +76,7 @@ public class SystemUiSystemPropertiesFlags { /** Gating the removal of sorting-notifications-by-interruptiveness. */ public static final Flag NO_SORT_BY_INTERRUPTIVENESS = - devFlag("persist.sysui.notification.no_sort_by_interruptiveness"); + releasedFlag("persist.sysui.notification.no_sort_by_interruptiveness"); /** Gating the logging of DND state change events. */ public static final Flag LOG_DND_STATE_EVENTS = @@ -115,7 +115,7 @@ public class SystemUiSystemPropertiesFlags { } /** - * Creates a flag that is enabled by default in debuggable builds. + * Creates a flag that is disabled by default in debuggable builds. * It can be enabled by setting this flag's SystemProperty to 1. * * This flag is ALWAYS disabled in release builds. |