We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 69acb6b commit 2aba0ecCopy full SHA for 2aba0ec
telephony/java/com/android/internal/telephony/PhoneFactory.java
@@ -109,13 +109,13 @@ public static void makeDefaultPhone(Context context) {
109
110
int phoneType = getPhoneType(networkMode);
111
if (phoneType == Phone.PHONE_TYPE_GSM) {
112
+ Log.i(LOG_TAG, "Creating GSMPhone");
113
sProxyPhone = new PhoneProxy(new GSMPhone(context,
114
sCommandsInterface, sPhoneNotifier));
- Log.i(LOG_TAG, "Creating GSMPhone");
115
} else if (phoneType == Phone.PHONE_TYPE_CDMA) {
116
+ Log.i(LOG_TAG, "Creating CDMAPhone");
117
sProxyPhone = new PhoneProxy(new CDMAPhone(context,
118
- Log.i(LOG_TAG, "Creating CDMAPhone");
119
}
120
121
sMadeDefaults = true;
0 commit comments