Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 243655 | Differences between
and this patch

Collapse All | Expand All

(-)src/org/eclipse/mylyn/internal/tasks/ui/notifications/TaskListNotification.java (-3 / +3 lines)
Lines 111-121 Link Here
111
		}
111
		}
112
		Date anotherDate = (anotherNotification).getDate();
112
		Date anotherDate = (anotherNotification).getDate();
113
		if (date != null && anotherDate != null) {
113
		if (date != null && anotherDate != null) {
114
			return date.compareTo(anotherDate);
114
			return date.compareTo(anotherDate) * -1;
115
		} else if (date == null) {
115
		} else if (date == null) {
116
			return -1;
117
		} else {
118
			return 1;
116
			return 1;
117
		} else {
118
			return -1;
119
		}
119
		}
120
	}
120
	}
121
121

Return to bug 243655