Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 33fd0e3a authored by Neil Fuller's avatar Neil Fuller Committed by android-build-merger
Browse files

Merge "Explicitly use en_US when picking a Locale using "en""

am: fb00edac

* commit 'fb00edac':
  Explicitly use en_US when picking a Locale using "en"

Change-Id: I31d84dd2c0838df47d9d7f7bac883706c5ba1e25
parents ff1d36bf fb00edac
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -226,6 +226,8 @@ public final class MccTable {
    private static final Map<Locale, Locale> FALLBACKS = new HashMap<Locale, Locale>();

    static {
        // If we have English (without a country) explicitly prioritize en_US. http://b/28998094
        FALLBACKS.put(Locale.ENGLISH, Locale.US);
        FALLBACKS.put(Locale.CANADA, Locale.US);
    }