commit | 1937711c8a780c6b169f1a04d6c941f7d4c395f0 | [log] [tgz] |
---|---|---|
author | Anvesh Renikindi <renikindi@google.com> | Tue Aug 22 15:25:19 2023 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Tue Aug 22 15:25:19 2023 +0000 |
tree | 42159413cc73cdf4977a84469dee648068a794ba | |
parent | 29ee5744935f020a0872332066ca7d3e77988c41 [diff] | |
parent | 887c955a01e6ec16181624f9c43cac5382d57f30 [diff] |
Merge "Change nullability of inheriting function of PinPrivacyPreferenceController" into main
diff --git a/src/com/android/settings/security/screenlock/PinPrivacyPreferenceController.kt b/src/com/android/settings/security/screenlock/PinPrivacyPreferenceController.kt index 176183e..78656e8 100644 --- a/src/com/android/settings/security/screenlock/PinPrivacyPreferenceController.kt +++ b/src/com/android/settings/security/screenlock/PinPrivacyPreferenceController.kt
@@ -45,7 +45,7 @@ return PREF_KEY } - override fun onPreferenceChange(preference: Preference?, value: Any?): Boolean { + override fun onPreferenceChange(preference: Preference, value: Any): Boolean { lockPatternUtils.setPinEnhancedPrivacyEnabled((value as Boolean), userId) return true }