Fix UserInfo Parcel

ag/9372503 put the order of reading preCreated from a UserInfo parcel
in the wrong spot. We fix it here.

Test: none
Change-Id: I4502e901ff2aac977c584fa8c5a3d1263be33572
This commit is contained in:
Bookatz
2019-10-03 17:36:30 -07:00
parent 56566bb964
commit e80af14d33

View File

@@ -420,10 +420,10 @@ public class UserInfo implements Parcelable {
lastLoggedInTime = source.readLong();
lastLoggedInFingerprint = source.readString();
partial = source.readBoolean();
preCreated = source.readBoolean();
profileGroupId = source.readInt();
guestToRemove = source.readBoolean();
restrictedProfileParentId = source.readInt();
profileBadge = source.readInt();
preCreated = source.readBoolean();
}
}