ru.r2cloud.apt.RemoteFileComparator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of apt-man Show documentation
Show all versions of apt-man Show documentation
Library for managing APT repository
package ru.r2cloud.apt;
import java.util.Comparator;
import ru.r2cloud.apt.model.RemoteFile;
public class RemoteFileComparator implements Comparator {
public static final RemoteFileComparator INSTANCE = new RemoteFileComparator();
@Override
public int compare(RemoteFile o1, RemoteFile o2) {
return Long.compare(o1.getLastModifiedTime(), o2.getLastModifiedTime());
}
}