From cfb0e9a1ba8e3678704e1667d5ff05dad5db46c8 Mon Sep 17 00:00:00 2001 From: Alan Viverette Date: Wed, 23 Feb 2022 12:40:56 -0500 Subject: 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) --- .../src/com/android/systemui/controls/management/ControlAdapter.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 40662536e57e..4a3350e056bf 100644 --- a/packages/SystemUI/src/com/android/systemui/controls/management/ControlAdapter.kt +++ b/packages/SystemUI/src/com/android/systemui/controls/management/ControlAdapter.kt @@ -320,7 +320,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 } -- cgit v1.2.3-59-g8ed1b