blob: e700f13e3192ddaeb66efe9836b4858d8f7ffb20 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
package cgeo.geocaching.sorting;
import cgeo.geocaching.Geocache;
/**
* sorts caches by geo code, therefore effectively sorting by cache age
*
*/
public class GeocodeComparator extends AbstractCacheComparator {
@Override
protected boolean canCompare(final Geocache cache) {
// This will fall back to geocode comparisons.
return false;
}
@Override
protected int compareCaches(final Geocache cache1, final Geocache cache2) {
throw new RuntimeException("should never be called");
}
}
|