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

Commit 12d2f929 authored by Amit Mahajan's avatar Amit Mahajan Committed by android-build-merger
Browse files

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

am: d1a85698

* commit 'd1a85698':
  For CDMA phone return MDN as line1Number instead of MSISDN.

Change-Id: I3bbd1d6271a21ebbbb33bd7aea3a6dd36f06e453
parents 12744a4a d1a85698
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;
        }
    }