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 216150 | Differences between
and this patch

Collapse All | Expand All

(-)src/org/eclipse/mylyn/internal/tasks/ui/views/TaskListTableSorter.java (-2 / +2 lines)
Lines 144-154 Link Here
144
			}
144
			}
145
			if (t1 != null && t2 != null) {
145
			if (t1 != null && t2 != null) {
146
				if (t1.getCreationDate() != null) {
146
				if (t1.getCreationDate() != null) {
147
					return t1.getCreationDate().compareTo(t2.getCreationDate());
147
					return this.sortDirection * t1.getCreationDate().compareTo(t2.getCreationDate());
148
				}
148
				}
149
			}
149
			}
150
		} else {
150
		} else {
151
			return sortBySummary(element1, element2);
151
			return this.sortDirection * sortBySummary(element1, element2);
152
		}
152
		}
153
		return 0;
153
		return 0;
154
	}
154
	}

Return to bug 216150