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

Commit afc90048 authored by Amit Mahajan's avatar Amit Mahajan
Browse files

Fixed merge issue in GSMPhone.java

Change-Id: I2615c5567f8f0089c2a824d3d041ec4a36f1e293
parent eb3b8863
Loading
Loading
Loading
Loading
+0 −17
Original line number Diff line number Diff line
@@ -1887,23 +1887,6 @@ public class GSMPhone extends PhoneBase {
        }
    }

    /**
     * Sets the SIM voice message waiting indicator records.
     * @param line GSM Subscriber Profile Number, one-based. Only '1' is supported
     * @param countWaiting The number of messages waiting, if known. Use
     *                     -1 to indicate that an unknown number of
     *                      messages are waiting
     */
    @Override
    public void setVoiceMessageWaiting(int line, int countWaiting) {
        IccRecords r = mIccRecords.get();
        if (r != null) {
            r.setVoiceMessageWaiting(line, countWaiting);
        } else {
            log("SIM Records not found, MWI not updated");
        }
    }

    protected void log(String s) {
        Rlog.d(LOG_TAG, "[GSMPhone] " + s);
    }