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