``` override fun compareTo(other: Entry): Int...
# android
i
Copy code
override 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)
    }