summaryrefslogtreecommitdiffstats
path: root/intl/locale/nsLocaleService.cpp
diff options
context:
space:
mode:
authorMatt A. Tobin <email@mattatobin.com>2020-02-23 11:18:42 -0500
committerMatt A. Tobin <email@mattatobin.com>2020-02-23 11:18:42 -0500
commit33ec695ac0a1614c6812c3f9584f7db290296b7f (patch)
treebf2c357d3e9a6ae348933b30e3772fd1ad82bd08 /intl/locale/nsLocaleService.cpp
parente9ee12c988d80f847f8163c0873db9639b3fa8f4 (diff)
downloadUXP-33ec695ac0a1614c6812c3f9584f7db290296b7f.tar
UXP-33ec695ac0a1614c6812c3f9584f7db290296b7f.tar.gz
UXP-33ec695ac0a1614c6812c3f9584f7db290296b7f.tar.lz
UXP-33ec695ac0a1614c6812c3f9584f7db290296b7f.tar.xz
UXP-33ec695ac0a1614c6812c3f9584f7db290296b7f.zip
Issue #1053 - Remove android support from intl/locale/nsLocaleService.cpp
This is the only non-icu file with android code in it. Not going to remove android in icu its self because it remains a 3rd party lib.
Diffstat (limited to 'intl/locale/nsLocaleService.cpp')
-rw-r--r--intl/locale/nsLocaleService.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/intl/locale/nsLocaleService.cpp b/intl/locale/nsLocaleService.cpp
index 6d45ec9af..d81fb50c2 100644
--- a/intl/locale/nsLocaleService.cpp
+++ b/intl/locale/nsLocaleService.cpp
@@ -134,11 +134,6 @@ nsLocaleService::nsLocaleService(void)
bool lc_temp_valid = lc_temp != nullptr;
-#if defined(MOZ_WIDGET_ANDROID)
- // Treat the "C" env as nothing useful. See Bug 1095298.
- lc_temp_valid = lc_temp_valid && strcmp(lc_temp, "C") != 0;
-#endif
-
if (lc_temp_valid) {
result = nsPosixLocale::GetXPLocale(lc_temp, xpLocale);
CopyASCIItoUTF16(lc_temp, platformLocale);