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

Commit 572e0087 authored by Android (Google) Code Review's avatar Android (Google) Code Review
Browse files

Merge change Idfc116fe into eclair

* changes:
  Return null if SIM doesn't have the MSISDN Aplha tag.
parents 27407208 de1fcd49
Loading
Loading
Loading
Loading
+1 −10
Original line number Diff line number Diff line
@@ -879,16 +879,7 @@ public class GSMPhone extends PhoneBase {
    }

    public String getLine1AlphaTag() {
        String ret;

        ret = mSIMRecords.getMsisdnAlphaTag();

        if (ret == null || ret.length() == 0) {
            return mContext.getText(
                    com.android.internal.R.string.defaultMsisdnAlphaTag).toString();
        }

        return ret;
        return mSIMRecords.getMsisdnAlphaTag();
    }

    public void setLine1Number(String alphaTag, String number, Message onComplete) {