reformat kotlin

Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
This commit is contained in:
Andy Scherzinger 2022-06-07 18:17:25 +02:00
parent f2119770bc
commit ed09934c7a
No known key found for this signature in database
GPG Key ID: 6CADC7E3523C308B

View File

@ -72,13 +72,13 @@ open class FileSortOrder(var name: String, var isAscending: Boolean) {
}
}
val multiplier: Int
get() = if (isAscending) 1 else -1
open fun sortCloudFiles(files: List<RemoteFileBrowserItem>): List<RemoteFileBrowserItem> {
return sortCloudFilesByFavourite(files)
}
val multiplier : Int
get() = if (isAscending) 1 else -1
/**
* Comparator for RemoteFileBrowserItems, sorts favorite state.
*/