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

Commit ade0160e authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "Change excepted result on R for testVoiceMailNumber"

parents c539301f 5ec720f9
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1726,8 +1726,8 @@ public class GsmCdmaPhone extends Phone {
    public String getVoiceMailAlphaTag() {
        String ret = "";

        if (isPhoneTypeGsm()) {
            IccRecords r = mIccRecords.get();
        if (isPhoneTypeGsm() || mSimRecords != null) {
            IccRecords r = isPhoneTypeGsm() ? mIccRecords.get() : mSimRecords;

            ret = (r != null) ? r.getVoiceMailAlphaTag() : "";
        }