summaryrefslogtreecommitdiff
path: root/src/com/android/mms/service/ApnSettings.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/android/mms/service/ApnSettings.java')
-rw-r--r--src/com/android/mms/service/ApnSettings.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/com/android/mms/service/ApnSettings.java b/src/com/android/mms/service/ApnSettings.java
index 65d38b7..42d6427 100644
--- a/src/com/android/mms/service/ApnSettings.java
+++ b/src/com/android/mms/service/ApnSettings.java
@@ -18,13 +18,13 @@ package com.android.mms.service;
import android.content.Context;
import android.database.Cursor;
-import android.net.NetworkUtils;
import android.net.Uri;
import android.provider.Telephony;
import android.telephony.data.ApnSetting;
import android.text.TextUtils;
import com.android.mms.service.exception.ApnException;
+import com.android.net.module.util.Inet4AddressUtils;
import java.net.URI;
import java.net.URISyntaxException;
@@ -132,7 +132,7 @@ public class ApnSettings {
if (TextUtils.isEmpty(mmscUrl)) {
continue;
}
- mmscUrl = NetworkUtils.trimV4AddrZeros(mmscUrl);
+ mmscUrl = Inet4AddressUtils.trimAddressZeros(mmscUrl);
try {
new URI(mmscUrl);
} catch (URISyntaxException e) {
@@ -140,7 +140,7 @@ public class ApnSettings {
}
String proxyAddress = trimWithNullCheck(cursor.getString(COLUMN_MMSPROXY));
if (!TextUtils.isEmpty(proxyAddress)) {
- proxyAddress = NetworkUtils.trimV4AddrZeros(proxyAddress);
+ proxyAddress = Inet4AddressUtils.trimAddressZeros(proxyAddress);
final String portString =
trimWithNullCheck(cursor.getString(COLUMN_MMSPORT));
if (!TextUtils.isEmpty(portString)) {