Fix UserInfo Parcel

am: 5284336dec

Change-Id: I3af8a8c64137320124df6a1adc698cb0501f68d4
This commit is contained in:
Felipe Leme
2019-10-18 13:32:17 -07:00
committed by android-build-merger

View File

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