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

Commit 307112cc authored by Beena More's avatar Beena More Committed by Linux Build Service Account
Browse files

TelephonyTests: Fix runtime errors for clean run

methods not accessible from test classes

Change-Id: Ic0c379be15b951e92a80fe575f4b5d4fa7874cca
parent d487fefd
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;
    }