Fix name of COO.

Test: visual
Bug: 370850767
Flag: EXEMPT bug fix
Change-Id: I41931b49e993806cc3de71c67f600faee2af241d
This commit is contained in:
Yuchen
2024-10-16 03:03:16 +00:00
committed by Yuchen Sun
parent 3dc4d36a75
commit 5951efefd7
2 changed files with 2 additions and 2 deletions

View File

@@ -69,6 +69,6 @@ class RegulatoryInfoDisplayActivity : Activity() {
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
}
}

View File

@@ -27,5 +27,5 @@ interface HardwareInfoFeatureProvider {
/**
* The country of origin label.
*/
val countryIfOriginLabel: String
val countryOfOriginLabel: String
}