summaryrefslogtreecommitdiff
path: root/java/com/android/dialer/location
diff options
context:
space:
mode:
authorlinyuh <linyuh@google.com>2017-12-27 17:02:37 -0800
committerCopybara-Service <copybara-piper@google.com>2017-12-27 17:03:47 -0800
commit183cb71663320f16149d83eeebaff7795a4b55f2 (patch)
treebc8bfcce809257b3ddbb423a9808082292b9f6a3 /java/com/android/dialer/location
parentfc81a030a7b4f6d4a497f71aed593d398795e7da (diff)
Remove field prefixes.
Test: Existing tests PiperOrigin-RevId: 180230450 Change-Id: I0b2589cfeeaef81e42a04efa48af24b4e4d0e95f
Diffstat (limited to 'java/com/android/dialer/location')
-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() {