commit | 5951efefd779a912711e1bcfc42e7588643097b9 | [log] [tgz] |
---|---|---|
author | Yuchen <kirain@google.com> | Wed Oct 16 03:03:16 2024 +0000 |
committer | Yuchen Sun <kirain@google.com> | Wed Oct 16 03:21:12 2024 +0000 |
tree | f5077b763bba04de55835ce220f0f828fe8c2f73 | |
parent | 3dc4d36a7596fdd1ad968585e806684300de6157 [diff] |
Fix name of COO. Test: visual Bug: 370850767 Flag: EXEMPT bug fix Change-Id: I41931b49e993806cc3de71c67f600faee2af241d
diff --git a/src/com/android/settings/RegulatoryInfoDisplayActivity.kt b/src/com/android/settings/RegulatoryInfoDisplayActivity.kt index 6b5ccc7..4038aa8 100644 --- a/src/com/android/settings/RegulatoryInfoDisplayActivity.kt +++ b/src/com/android/settings/RegulatoryInfoDisplayActivity.kt
@@ -69,6 +69,6 @@ private fun getRegulatoryText(): CharSequence? { val regulatoryInfoText = resources.getText(R.string.regulatory_info_text) if (regulatoryInfoText.isNotBlank()) return regulatoryInfoText - return featureFactory.hardwareInfoFeatureProvider?.countryIfOriginLabel + return featureFactory.hardwareInfoFeatureProvider?.countryOfOriginLabel } }
diff --git a/src/com/android/settings/deviceinfo/hardwareinfo/HardwareInfoFeatureProvider.kt b/src/com/android/settings/deviceinfo/hardwareinfo/HardwareInfoFeatureProvider.kt index e9866d7..4b2666f 100644 --- a/src/com/android/settings/deviceinfo/hardwareinfo/HardwareInfoFeatureProvider.kt +++ b/src/com/android/settings/deviceinfo/hardwareinfo/HardwareInfoFeatureProvider.kt
@@ -27,5 +27,5 @@ /** * The country of origin label. */ - val countryIfOriginLabel: String + val countryOfOriginLabel: String }