Merge "Fix the parceling of the ServiceStartArgs" into udc-dev
This commit is contained in:
@@ -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);
|
||||||
|
|||||||
Reference in New Issue
Block a user