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

Commit e9b67d2b authored by Arthur Ishiguro's avatar Arthur Ishiguro Committed by android-build-merger
Browse files

[automerger] Resolve inconsistent parcel read in NanoAppFilter am: abe5a73a...

[automerger] Resolve inconsistent parcel read in NanoAppFilter am: abe5a73a am: 2895b320 am: 77e6e346 am: 49e97ea1 am: c2cfe453 am: cab2fa77
am: bf8733b1

Change-Id: I4fe6469031d7ef6fcc6d9b46da4dbc5845ea62d2
parents 199b3ee0 bf8733b1
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);