summaryrefslogtreecommitdiff
path: root/java/com/android/dialer/location/CountryDetector.java
diff options
context:
space:
mode:
authorTreehugger Robot <treehugger-gerrit@google.com>2017-12-28 02:35:07 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2017-12-28 02:35:07 +0000
commit281998c825ad48d842bb653e2f462719fdb0c1d9 (patch)
treebc8bfcce809257b3ddbb423a9808082292b9f6a3 /java/com/android/dialer/location/CountryDetector.java
parentfc81a030a7b4f6d4a497f71aed593d398795e7da (diff)
parent183cb71663320f16149d83eeebaff7795a4b55f2 (diff)
Merge "Remove field prefixes."
Diffstat (limited to 'java/com/android/dialer/location/CountryDetector.java')
-rw-r--r--java/com/android/dialer/location/CountryDetector.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/java/com/android/dialer/location/CountryDetector.java b/java/com/android/dialer/location/CountryDetector.java
index 110cf4502..5c5ed9c84 100644
--- a/java/com/android/dialer/location/CountryDetector.java
+++ b/java/com/android/dialer/location/CountryDetector.java
@@ -72,7 +72,7 @@ public class CountryDetector {
// exceedingly rare event that the device does not have a default locale set for some reason.
private static final String DEFAULT_COUNTRY_ISO = "US";
- @VisibleForTesting public static CountryDetector sInstance;
+ @VisibleForTesting public static CountryDetector instance;
private final TelephonyManager telephonyManager;
private final LocaleProvider localeProvider;
@@ -121,9 +121,9 @@ public class CountryDetector {
/** @return the single instance of the {@link CountryDetector} */
public static synchronized CountryDetector getInstance(Context context) {
- if (sInstance == null) {
+ if (instance == null) {
Context appContext = context.getApplicationContext();
- sInstance =
+ instance =
new CountryDetector(
appContext,
(TelephonyManager) context.getSystemService(Context.TELEPHONY_SERVICE),
@@ -131,7 +131,7 @@ public class CountryDetector {
Locale::getDefault,
new Geocoder(appContext));
}
- return sInstance;
+ return instance;
}
public String getCurrentCountryIso() {