blob: 197946adbdd617d4c284bdd838589deb56e1a992 (
plain)
1
2
3
4
5
6
7
8
9
10
|
package cgeo.geocaching.sorting;
/**
* Compares caches by date. Used only for event caches.
*/
public class EventDateComparator extends DateComparator {
final static public EventDateComparator singleton = new EventDateComparator();
}
|