summaryrefslogtreecommitdiffstats
path: root/src/com/android/contacts/common/CallUtil.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/android/contacts/common/CallUtil.java')
-rw-r--r--src/com/android/contacts/common/CallUtil.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/com/android/contacts/common/CallUtil.java b/src/com/android/contacts/common/CallUtil.java
index d61b700e..87b8f83d 100644
--- a/src/com/android/contacts/common/CallUtil.java
+++ b/src/com/android/contacts/common/CallUtil.java
@@ -19,8 +19,8 @@ package com.android.contacts.common;
import android.content.ComponentName;
import android.content.Intent;
import android.net.Uri;
-import android.telephony.PhoneNumberUtils;
+import com.android.contacts.common.util.PhoneNumberHelper;
import com.android.phone.common.PhoneConstants;
/**
@@ -85,7 +85,7 @@ public class CallUtil {
* numbers.
*/
public static Uri getCallUri(String number) {
- if (PhoneNumberUtils.isUriNumber(number)) {
+ if (PhoneNumberHelper.isUriNumber(number)) {
return Uri.fromParts(SCHEME_SIP, number, null);
}
return Uri.fromParts(SCHEME_TEL, number, null);