All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.avast.jarloader.TimeFileComparator.scala Maven / Gradle / Ivy

The newest version!
package com.avast.jarloader

import java.io.File
import java.util.Comparator

/**
 * Created 4.11.13
* * @author Jenda Kolena, [email protected] * @version 0.1 */ class TimeFileComparator extends Comparator[File] { def compare(o1: File, o2: File): Int = { if (o1.lastModified < o2.lastModified) 1 else if (o1.lastModified > o2.lastModified) -1 else 0 //descendant order } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy