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

Commit 8b564c2a authored by Stuart Scott's avatar Stuart Scott
Browse files

Use CharSequence for DisplayName

Change-Id: Ibb93424b85b11913282a4980e756b66a8d7946d5
parent efd8a85d
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -222,7 +222,7 @@ public class SubInfoRecord implements Parcelable {
            int id = source.readInt();
            String iccId = source.readString();
            int simSlotIndex = source.readInt();
            String displayName = source.readString();
            CharSequence displayName = source.readCharSequence();
            int nameSource = source.readInt();
            int color = source.readInt();
            String number = source.readString();
@@ -247,7 +247,7 @@ public class SubInfoRecord implements Parcelable {
        dest.writeInt(mId);
        dest.writeString(mIccId);
        dest.writeInt(mSimSlotIndex);
        dest.writeString(mDisplayName.toString());
        dest.writeCharSequence(mDisplayName);
        dest.writeInt(mNameSource);
        dest.writeInt(mColor);
        dest.writeString(mNumber.toString());