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

Commit 736a46c9 authored by Manish Kumar's avatar Manish Kumar Committed by Linux Build Service Account
Browse files

telephony: fixing compiling issues for CdmaSMSDispatcher

fixing compiling issues for CdmaSMSDispatcher

Change-Id: I14b4bf836b809d04d3c5a5eade6733d4ab71de3f
(cherry picked from commit b2a4b8d5360f7626d9cf86984154913556268d99)
parent 59bc49af
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -131,8 +131,8 @@ public class CdmaSMSDispatcher extends SMSDispatcher {
            PendingIntent sentIntent, PendingIntent deliveryIntent, int priority) {
        SmsMessage.SubmitPdu pdu = SmsMessage.getSubmitPduWithPriority(
                scAddr, destAddr, text, (deliveryIntent != null), null, priority);
        HashMap map = SmsTrackerMapFactory(destAddr, scAddr, text, pdu);
        SmsTracker tracker = SmsTrackerFactory(map, sentIntent,
        HashMap map = getSmsTrackerMap(destAddr, scAddr, text, pdu);
        SmsTracker tracker = getSmsTracker(map, sentIntent,
                deliveryIntent, getFormat());
        sendSubmitPdu(tracker);
    }