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

Commit abe5a73a authored by Arthur Ishiguro's avatar Arthur Ishiguro
Browse files

Resolve inconsistent parcel read in NanoAppFilter

Bug: 77599679
Test: Compile only
Change-Id: Ib417a5cb4d51744442d2fb14437cabbe5fd1c266
parent 4bc1c244
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -82,7 +82,7 @@ public class NanoAppFilter {
        mAppId = in.readLong();
        mAppVersion = in.readInt();
        mVersionRestrictionMask = in.readInt();
        mAppIdVendorMask = in.readInt();
        mAppIdVendorMask = in.readLong();
    }

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

    public void writeToParcel(Parcel out, int flags) {

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