mirror of
https://github.com/Kunzisoft/KeePassDX.git
synced 2025-12-04 15:49:33 +01:00
Fix PwDate
This commit is contained in:
@@ -96,10 +96,14 @@ public class PwDate implements Cloneable, Parcelable {
|
||||
}
|
||||
|
||||
protected PwDate(Parcel in) {
|
||||
jDate = (Date) in.readSerializable();
|
||||
jDateBuilt = in.readByte() != 0;
|
||||
in.readByteArray(cDate);
|
||||
cDateBuilt = in.readByte() != 0;
|
||||
try {
|
||||
jDate = (Date) in.readSerializable();
|
||||
jDateBuilt = in.readByte() != 0;
|
||||
in.readByteArray(cDate);
|
||||
cDateBuilt = in.readByte() != 0;
|
||||
} catch (Exception e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user