ivano
08/08/2019, 7:20 AMoverride fun compareTo(other: Entry): Int {
val dateOne = SimpleDateFormat("yyyy-MM-dd", Locale.getDefault()).parse(this.date)
val dateTwo = SimpleDateFormat("yyyy-MM-dd", Locale.getDefault()).parse(other.date)
return dateOne.compareTo(dateTwo)
}