Community
Participate
Working Groups
}
Date anotherDate = (anotherNotification).getDate();
if (date != null && anotherDate != null) {
return date.compareTo(anotherDate);
return date.compareTo(anotherDate) * -1;
} else if (date == null) {
return -1;
} else {
return 1;