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

Commit 57d377fd authored by Pengquan Meng's avatar Pengquan Meng
Browse files

Fixed the spn from IccRecords

This change trim the spn from IccRecords.

Bug: 132311210
Test: build & current test
Merged-In: I144ca55705273081c00a5abfd7872c8b1cbb9b01
Change-Id: I144ca55705273081c00a5abfd7872c8b1cbb9b01
(cherry picked from commit 4939e95c)
parent f232f272
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -715,8 +715,8 @@ public abstract class IccRecords extends Handler implements IccConstants {

    protected void setServiceProviderName(String spn) {
        if (!TextUtils.equals(mSpn, spn)) {
            mSpn = spn != null ? spn.trim() : null;
            mSpnUpdatedRegistrants.notifyRegistrants();
            mSpn = spn;
        }
    }