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

Commit f525414d authored by Sanghee Kim's avatar Sanghee Kim
Browse files

use PhoneConstants.PHONE_KEY instead of PHONE_ID



PhoneConstants.PHONE_KEY is already defined.
So change from hard-code PHONE_ID to PhoneConstants.PHONE_KEY

Test: builds
Change-Id: I32dbc1ddbb394be9531f126cb8668a830f798928
Signed-off-by: default avatarSanghee Kim <haya93@samsung.com>
parent 6c99ee7a
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -25,6 +25,7 @@ import android.telephony.Rlog;
import android.telephony.ServiceState;

import com.android.internal.telephony.CommandsInterface;
import com.android.internal.telephony.PhoneConstants;
import com.android.internal.telephony.gsm.SimTlv;
//import com.android.internal.telephony.gsm.VoiceMailConstants;

@@ -362,7 +363,7 @@ public class IsimUiccRecords extends IccRecords implements IsimRecords {
    private void broadcastRefresh() {
        Intent intent = new Intent(INTENT_ISIM_REFRESH);
        log("send ISim REFRESH: " + INTENT_ISIM_REFRESH);
        intent.putExtra("PHONE_ID", mParentApp.getPhoneId());
        intent.putExtra(PhoneConstants.PHONE_KEY, mParentApp.getPhoneId());
        mContext.sendBroadcast(intent);
    }