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

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

Merge "Assisted dialing support of MO SMS" into lmp-dev

parents 8a4537ba 77ea3ee5
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -2316,8 +2316,9 @@ public class PhoneNumberUtils
    /**
     * This function checks if the passed in string conforms to the NANP format
     * i.e. NXX-NXX-XXXX, N is any digit 2-9 and X is any digit 0-9
     * @hide
     */
    private static boolean isNanp (String dialStr) {
    public static boolean isNanp (String dialStr) {
        boolean retVal = false;
        if (dialStr != null) {
            if (dialStr.length() == NANP_LENGTH) {