mirror of
https://github.com/moparisthebest/k-9
synced 2025-01-31 07:10:14 -05:00
5491dee81b
Guess I should go back to svk
20 lines
497 B
Java
20 lines
497 B
Java
|
|
package com.fsck.k9.mail;
|
|
|
|
import java.util.Comparator;
|
|
|
|
public class MessageDateComparator implements Comparator<Message> {
|
|
public int compare(Message o1, Message o2) {
|
|
try {
|
|
if (o1.getSentDate() == null) {
|
|
return 1;
|
|
} else if (o2.getSentDate() == null) {
|
|
return -1;
|
|
} else
|
|
return o2.getSentDate().compareTo(o1.getSentDate());
|
|
} catch (Exception e) {
|
|
return 0;
|
|
}
|
|
}
|
|
}
|