summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2023-07-07 05:19:00 +0000
committerAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2023-07-07 05:19:00 +0000
commit40e97ede087d4915490255fa3ae327286238d0cb (patch)
treebda43a28dc47b636fd4c231e2362c68ec61725f4
parentacc028bd2bd7bf4684d9472f6940cfaed06249e2 (diff)
parentd35a9f8c782b621da27c2430830b94dbff843885 (diff)
downloadlocalepicker-android14-mainline-uwb-release.tar.gz
Change-Id: Icbe2bcae45e3e7ff09e7e50a12c332a559cbf223
-rw-r--r--src/com/android/localepicker/LocaleStore.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/com/android/localepicker/LocaleStore.java b/src/com/android/localepicker/LocaleStore.java
index c799bd3..30ebbe6 100644
--- a/src/com/android/localepicker/LocaleStore.java
+++ b/src/com/android/localepicker/LocaleStore.java
@@ -106,7 +106,7 @@ public class LocaleStore {
mIsTranslated = isTranslated;
}
- /* package */ boolean isSuggested() {
+ public boolean isSuggested() {
if (!mIsTranslated) { // Never suggest an untranslated locale
return false;
}
@@ -128,7 +128,7 @@ public class LocaleStore {
return mFullNameNative;
}
- String getFullCountryNameNative() {
+ public String getFullCountryNameNative() {
if (mFullCountryNameNative == null) {
mFullCountryNameNative = LocaleHelper.getDisplayCountry(mLocale, mLocale);
}