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

Commit d13fb587 authored by Amit Mahajan's avatar Amit Mahajan Committed by Android (Google) Code Review
Browse files

Merge "Make some static functions public so telephony tests can access them"

parents d79a245a 8bc92f34
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -1012,7 +1012,7 @@ public class GsmAlphabet {
     *
     * @param tables the new list of enabled single shift tables
     */
    static synchronized void setEnabledSingleShiftTables(int[] tables) {
    public static synchronized void setEnabledSingleShiftTables(int[] tables) {
        sEnabledSingleShiftTables = tables;
        sDisableCountryEncodingCheck = true;

@@ -1030,7 +1030,7 @@ public class GsmAlphabet {
     *
     * @param tables the new list of enabled locking shift tables
     */
    static synchronized void setEnabledLockingShiftTables(int[] tables) {
    public static synchronized void setEnabledLockingShiftTables(int[] tables) {
        sEnabledLockingShiftTables = tables;
        sDisableCountryEncodingCheck = true;
    }
@@ -1042,7 +1042,7 @@ public class GsmAlphabet {
     *
     * @return the list of enabled single shift tables
     */
    static synchronized int[] getEnabledSingleShiftTables() {
    public static synchronized int[] getEnabledSingleShiftTables() {
        return sEnabledSingleShiftTables;
    }

@@ -1053,7 +1053,7 @@ public class GsmAlphabet {
     *
     * @return the list of enabled locking shift tables
     */
    static synchronized int[] getEnabledLockingShiftTables() {
    public static synchronized int[] getEnabledLockingShiftTables() {
        return sEnabledLockingShiftTables;
    }