Merge "Fix name of COO." into main

This commit is contained in:
Treehugger Robot
2024-10-16 04:36:50 +00:00
committed by Android (Google) Code Review
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
}