removing the extra compare step at sorting

This commit is contained in:
tibbi 2018-12-21 14:56:38 +01:00
parent 293d8a7390
commit 93907c54b4
2 changed files with 0 additions and 8 deletions

View file

@ -170,10 +170,6 @@ fun Context.getSortedDirectories(source: ArrayList<Directory>): ArrayList<Direct
else -> o1.taken.compareTo(o2.taken)
}
if (result == 0) {
result = AlphanumericComparator().compare(o1.path.toLowerCase(), o2.path.toLowerCase())
}
if (sorting and SORT_DESCENDING != 0) {
result *= -1
}

View file

@ -366,10 +366,6 @@ class MediaFetcher(val context: Context) {
else -> o1.taken.compareTo(o2.taken)
}
if (result == 0) {
result = AlphanumericComparator().compare(o1.path.toLowerCase(), o2.path.toLowerCase())
}
if (sorting and SORT_DESCENDING != 0) {
result *= -1
}