Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 41735e69 authored by Alex Yakavenka's avatar Alex Yakavenka Committed by Steve Kondik
Browse files

Fix printing order of phone objects creation

parent ac4879b3
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -109,13 +109,13 @@ public class PhoneFactory {

                int phoneType = getPhoneType(networkMode);
                if (phoneType == Phone.PHONE_TYPE_GSM) {
                    Log.i(LOG_TAG, "Creating GSMPhone");
                    sProxyPhone = new PhoneProxy(new GSMPhone(context,
                            sCommandsInterface, sPhoneNotifier));
                    Log.i(LOG_TAG, "Creating GSMPhone");
                } else if (phoneType == Phone.PHONE_TYPE_CDMA) {
                    Log.i(LOG_TAG, "Creating CDMAPhone");
                    sProxyPhone = new PhoneProxy(new CDMAPhone(context,
                            sCommandsInterface, sPhoneNotifier));
                    Log.i(LOG_TAG, "Creating CDMAPhone");
                }

                sMadeDefaults = true;