![JAR search and dependency download from the Maven repository](/logo.png)
com.avast.jarloader.TimeFileComparator.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jar-loader Show documentation
Show all versions of jar-loader Show documentation
Library for dynamic loading of JARs with miscellaneous content.
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