blob: cee0633a2a8f073671f23ce9ed5cd24611d39f77 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
package cgeo.geocaching.sorting;
import cgeo.geocaching.Geocache;
/**
* sorts caches by last visited date
*
*/
public class VisitComparator extends AbstractCacheComparator {
final static public VisitComparator singleton = new VisitComparator();
@Override
protected int compareCaches(final Geocache cache1, final Geocache cache2) {
return Long.valueOf(cache2.getVisitedDate()).compareTo(cache1.getVisitedDate());
}
}
|