diff options
| author | 2022-02-23 12:40:56 -0500 | |
|---|---|---|
| committer | 2022-05-02 14:08:48 +0000 | |
| commit | b65b4798f30ac5ed028930d4a5bf0bfe756556ba (patch) | |
| tree | 7a3eefeb9fca0d85c5f2d86a6c45e19b850a116f | |
| parent | 8b7783d4df91c2835a096365db50c4370a73220a (diff) | |
Update SysUI to be compatible with latest Jetpack libraries
Nullability updates.
Bug: 214255490
Test: manual
Change-Id: I9e793fb569f1bd6568b951d908d483fb4acfcd8c
Merged-In: I9e793fb569f1bd6568b951d908d483fb4acfcd8c
(cherry picked from commit b39a197e9ebb3002b34aa0981faefed8652f99b7)
(cherry picked from commit 95888176f2bc61dc1e7d97ce8765e378213c76d7)
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/controls/management/ControlAdapter.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/controls/management/ControlAdapter.kt b/packages/SystemUI/src/com/android/systemui/controls/management/ControlAdapter.kt index f9115b20ca06..3eb58bba1ca4 100644 --- a/packages/SystemUI/src/com/android/systemui/controls/management/ControlAdapter.kt +++ b/packages/SystemUI/src/com/android/systemui/controls/management/ControlAdapter.kt @@ -343,7 +343,7 @@ private class ControlHolderAccessibilityDelegate( info.className = Switch::class.java.name } - override fun performAccessibilityAction(host: View?, action: Int, args: Bundle?): Boolean { + override fun performAccessibilityAction(host: View, action: Int, args: Bundle?): Boolean { if (super.performAccessibilityAction(host, action, args)) { return true } |