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

Commit d1a85698 authored by Amit Mahajan's avatar Amit Mahajan Committed by Android (Google) Code Review
Browse files

Merge "For CDMA phone return MDN as line1Number instead of MSISDN." into nyc-dev

parents 51ec7e6e 808e8bbb
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -1465,10 +1465,8 @@ public class GsmCdmaPhone extends Phone {
        if (isPhoneTypeGsm()) {
            IccRecords r = mIccRecords.get();
            return (r != null) ? r.getMsisdnNumber() : null;
        } else if (isPhoneTypeCdma()) {
        } else {
            return mSST.getMdnNumber();
        } else { //isPhoneTypeCdmaLte()
            return (mSimRecords != null) ? mSimRecords.getMsisdnNumber() : null;
        }
    }