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

Commit fc1e8477 authored by Stuart Scott's avatar Stuart Scott Committed by Android Git Automerger
Browse files

am 8585e0dd: Merge "Use CharSequence for DisplayName" into lmp-mr1-dev

* commit '8585e0dd':
  Use CharSequence for DisplayName
parents ed247003 8585e0dd
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());