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

Commit 8bc92f34 authored by Amit Mahajan's avatar Amit Mahajan
Browse files

Make some static functions public so telephony tests can access them

Change-Id: I69ab45853db8a7f70644201751452605b07d19c1
parent 9f425a8a
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;
    }