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

Commit 2de620f9 authored by Arthur Ishiguro's avatar Arthur Ishiguro Committed by android-build-team Robot
Browse files

Resolve inconsistent parcel read in NanoAppFilter

Bug: 77599679
Test: Compile only
Change-Id: Ib417a5cb4d51744442d2fb14437cabbe5fd1c266
(cherry picked from commit abe5a73a)
parent 623b2b60
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -85,7 +85,7 @@ public class NanoAppFilter implements Parcelable {
        mAppId = in.readLong();
        mAppVersion = in.readInt();
        mVersionRestrictionMask = in.readInt();
        mAppIdVendorMask = in.readInt();
        mAppIdVendorMask = in.readLong();
    }

    public int describeContents() {
@@ -93,7 +93,6 @@ public class NanoAppFilter implements Parcelable {
    }

    public void writeToParcel(Parcel out, int flags) {

        out.writeLong(mAppId);
        out.writeInt(mAppVersion);
        out.writeInt(mVersionRestrictionMask);