summaryrefslogtreecommitdiff
path: root/core/java/android/provider/Telephony.java
diff options
context:
space:
mode:
Diffstat (limited to 'core/java/android/provider/Telephony.java')
-rw-r--r--core/java/android/provider/Telephony.java8
1 files changed, 6 insertions, 2 deletions
diff --git a/core/java/android/provider/Telephony.java b/core/java/android/provider/Telephony.java
index 776a2664b16a..1ffbde7e6244 100644
--- a/core/java/android/provider/Telephony.java
+++ b/core/java/android/provider/Telephony.java
@@ -28,16 +28,16 @@ import android.content.Intent;
import android.database.Cursor;
import android.net.Uri;
import android.telephony.PhoneNumberUtils;
+import android.telephony.SmsMessage;
import android.telephony.TelephonyManager;
-import android.telephony.gsm.SmsMessage;
import android.text.TextUtils;
import android.text.util.Regex;
import android.util.Config;
import java.util.HashSet;
-import java.util.Set;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
+import java.util.Set;
/**
* The Telephony provider contains data related to phone operation.
@@ -49,6 +49,10 @@ public final class Telephony {
private static final boolean DEBUG = false;
private static final boolean LOCAL_LOGV = DEBUG ? Config.LOGD : Config.LOGV;
+ // Constructor
+ public Telephony() {
+ }
+
/**
* Base columns for tables that contain text based SMSs.
*/