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

Commit 860ee3d9 authored by Amit Mahajan's avatar Amit Mahajan
Browse files

Fixing values for LOCKED_REASON constants in IccRecords.

Test: Basic telephony sanity
Bug: 64131518
Change-Id: I23840d09a4ba699f2a85ef2745d7fdb1e89a7186
parent 11f6ad9c
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -71,9 +71,9 @@ public abstract class IccRecords extends Handler implements IccConstants {
    // SIM is not locked
    protected static final int LOCKED_RECORDS_REQ_REASON_NONE = 0;
    // Records requested for PIN or PUK locked SIM
    protected static final int LOCKED_RECORDS_REQ_REASON_LOCKED = 0;
    protected static final int LOCKED_RECORDS_REQ_REASON_LOCKED = 1;
    // Records requested for network locked SIM
    protected static final int LOCKED_RECORDS_REQ_REASON_NETWORK_LOCKED = 0;
    protected static final int LOCKED_RECORDS_REQ_REASON_NETWORK_LOCKED = 2;

    protected boolean mRecordsRequested = false; // true if we've made requests for the sim records
    protected int mLockedRecordsReqReason = LOCKED_RECORDS_REQ_REASON_NONE;