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

Commit fea5c6ee authored by Jing Ji's avatar Jing Ji Committed by Android (Google) Code Review
Browse files

Merge "Fix the parceling of the ServiceStartArgs" into udc-dev

parents 36d5df64 00c648d0
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -49,7 +49,7 @@ public class ServiceStartArgs implements Parcelable {
    public void writeToParcel(Parcel out, int flags) {
    public void writeToParcel(Parcel out, int flags) {
        out.writeInt(taskRemoved ? 1 : 0);
        out.writeInt(taskRemoved ? 1 : 0);
        out.writeInt(startId);
        out.writeInt(startId);
        out.writeInt(flags);
        out.writeInt(this.flags);
        if (args != null) {
        if (args != null) {
            out.writeInt(1);
            out.writeInt(1);
            args.writeToParcel(out, 0);
            args.writeToParcel(out, 0);