Correct use of logical AND
A bitwise AND was use when a logical AND was meant to be used. Change-Id: I4e5529ff9fce1e6397d7cd9483268766fc92dcf5
This commit is contained in:
@@ -1654,7 +1654,7 @@ public class PhoneNumberUtils
|
||||
if (DBG) log("processPlusCodeWithinNanp,networkDialStr=" + networkDialStr);
|
||||
// If there is a plus sign at the beginning of the dial string,
|
||||
// Convert the plus sign to the default IDP since it's an international number
|
||||
if (networkDialStr != null &
|
||||
if (networkDialStr != null &&
|
||||
networkDialStr.charAt(0) == PLUS_SIGN_CHAR &&
|
||||
networkDialStr.length() > 1) {
|
||||
String newStr = networkDialStr.substring(1);
|
||||
|
||||
Reference in New Issue
Block a user