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

Commit 27b36a47 authored by Ethan Chen's avatar Ethan Chen
Browse files

Fix compilation after upstream merges

Change-Id: Idf40e83256ad9a90a28fe1bd409e8ca1859a448b
parent 3ec0fd4f
Loading
Loading
Loading
Loading
+10 −18
Original line number Diff line number Diff line
@@ -105,24 +105,6 @@ public class CDMALTEPhone extends CDMAPhone {
        super(context, ci, notifier, false);
    }

    @Override
    public void handleMessage (Message msg) {
        switch (msg.what) {
            case EVENT_SUBSCRIPTION_ACTIVATED:
                log("EVENT_SUBSCRIPTION_ACTIVATED");
                onSubscriptionActivated();
                break;

            case EVENT_SUBSCRIPTION_DEACTIVATED:
                log("EVENT_SUBSCRIPTION_DEACTIVATED");
                onSubscriptionDeactivated();
                break;

            default:
                super.handleMessage(msg);
        }
    }

    @Override
    protected void initSstIcc() {
        mSST = new CdmaLteServiceStateTracker(this);
@@ -169,6 +151,16 @@ public class CDMALTEPhone extends CDMAPhone {
                mSimRecordsLoadedRegistrants.notifyRegistrants();
                break;

            case EVENT_SUBSCRIPTION_ACTIVATED:
                log("EVENT_SUBSCRIPTION_ACTIVATED");
                onSubscriptionActivated();
                break;

            case EVENT_SUBSCRIPTION_DEACTIVATED:
                log("EVENT_SUBSCRIPTION_DEACTIVATED");
                onSubscriptionDeactivated();
                break;

            default:
                super.handleMessage(msg);
        }