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

Commit eabaff1c 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 faf2dc95
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -83,7 +83,7 @@ public class NanoAppFilter {
        mAppId = in.readLong();
        mAppVersion = in.readInt();
        mVersionRestrictionMask = in.readInt();
        mAppIdVendorMask = in.readInt();
        mAppIdVendorMask = in.readLong();
    }

    public int describeContents() {
@@ -91,7 +91,6 @@ public class NanoAppFilter {
    }

    public void writeToParcel(Parcel out, int flags) {

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