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

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

Merge "Fix build."

parents b575731e 96c87e2f
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -31,7 +31,7 @@ import android.telephony.Rlog;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Locale;
import libcore.icu.TimeZones;
import libcore.icu.TimeZoneNames;

/**
 * Mobile Country Code
@@ -105,7 +105,7 @@ public final class MccTable
            } else {
                locale = new Locale(entry.language, entry.iso);
            }
            String[] tz = TimeZones.forLocale(locale);
            String[] tz = TimeZoneNames.forLocale(locale);
            if (tz.length == 0) return null;
            return tz[0];
        }