Community
Participate
Working Groups
}
if (t1 != null && t2 != null) {
if (t1.getCreationDate() != null) {
return t1.getCreationDate().compareTo(t2.getCreationDate());
return this.sortDirection * t1.getCreationDate().compareTo(t2.getCreationDate());
} else {
return sortBySummary(element1, element2);
return this.sortDirection * sortBySummary(element1, element2);
return 0;