Resolve inconsistent parcel read in NanoAppFilter
Bug: 77599679 Test: Compile only Change-Id: Ib417a5cb4d51744442d2fb14437cabbe5fd1c266
This commit is contained in:
@@ -82,7 +82,7 @@ public class NanoAppFilter {
|
|||||||
mAppId = in.readLong();
|
mAppId = in.readLong();
|
||||||
mAppVersion = in.readInt();
|
mAppVersion = in.readInt();
|
||||||
mVersionRestrictionMask = in.readInt();
|
mVersionRestrictionMask = in.readInt();
|
||||||
mAppIdVendorMask = in.readInt();
|
mAppIdVendorMask = in.readLong();
|
||||||
}
|
}
|
||||||
|
|
||||||
public int describeContents() {
|
public int describeContents() {
|
||||||
@@ -90,7 +90,6 @@ public class NanoAppFilter {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public void writeToParcel(Parcel out, int flags) {
|
public void writeToParcel(Parcel out, int flags) {
|
||||||
|
|
||||||
out.writeLong(mAppId);
|
out.writeLong(mAppId);
|
||||||
out.writeInt(mAppVersion);
|
out.writeInt(mAppVersion);
|
||||||
out.writeInt(mVersionRestrictionMask);
|
out.writeInt(mVersionRestrictionMask);
|
||||||
|
|||||||
Reference in New Issue
Block a user