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

Commit ef829ece authored by Tyler Gunn's avatar Tyler Gunn
Browse files

Move position of bundle parceling for PA extras.

Bug: 22806380
Change-Id: I9797ee0f6c9b5143ccd3417cfd5a7b631a4db480
parent ea174f7c
Loading
Loading
Loading
Loading
+3 −4
Original line number Diff line number Diff line
@@ -584,9 +584,8 @@ public final class PhoneAccount implements Parcelable {
            out.writeInt(1);
            mIcon.writeToParcel(out, flags);
        }

        out.writeBundle(mExtras);
        out.writeByte((byte) (mIsEnabled ? 1 : 0));
        out.writeBundle(mExtras);
    }

    public static final Creator<PhoneAccount> CREATOR
@@ -628,8 +627,8 @@ public final class PhoneAccount implements Parcelable {
        } else {
            mIcon = null;
        }
        mExtras = in.readBundle();
        mIsEnabled = in.readByte() == 1;
        mExtras = in.readBundle();
    }

    @Override