Details
-
Bug
-
Resolution: Fixed
-
Blocker
-
4.5
-
Unknown
-
N/A
-
N/A
-
Description
The reason is that the DateProperty class has this code:
Date date = (Date) value; // Make sure to store a Date and not some extended Date or it's going to be a nightmare to compare between them if (date.getClass() != Date.class) { ...
which generates a NPE if date is null...