Warning: session_start(): open(/var/lib/php/sessions/sess_bp2ocb4i5nqueqidnak7jo2q6n, O_RDWR) failed: No space left on device (28) in /var/www/tb-usercake/models/config.php on line 51
Warning: session_start(): Failed to read session data: files (path: /var/lib/php/sessions) in /var/www/tb-usercake/models/config.php on line 51
// newest first
static L sortFilesByDateDesc(Collection files) {
ret sortedByComparator(files, new Comparator{
AutoMap dates = new(f lastModified); // cache to ensure comparator is sane
public int compare(File b, File a) {
long x = dates.get(a), y = dates.get(b);
return x < y ? -1 : x == y ? 0 : 1;
}
});
}