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

Commit a1915f28 authored by Elliott Hughes's avatar Elliott Hughes Committed by Gerrit Code Review
Browse files

Merge "If telephony wants ASCII casing, it needs to ask for it."

parents 4ce0e815 b3537f8f
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -220,11 +220,11 @@ public final class MccTable
        if (null == language) {
            return; // no match possible
        }
        language = language.toLowerCase();
        language = language.toLowerCase(Locale.ROOT);
        if (null == country) {
            country = "";
        }
        country = country.toUpperCase();
        country = country.toUpperCase(Locale.ROOT);

        if((null == l || 0 == l.length()) && (null == c || 0 == c.length())) {
            try {