Improve: Android Studio's Reformat

This commit is contained in:
LooKeR
2021-11-16 01:12:52 +05:30
parent e49b357173
commit a321e9bfa5
32 changed files with 91 additions and 80 deletions

View File

@ -155,7 +155,7 @@ object Cache {
override fun query(
uri: Uri, projection: Array<String>?,
selection: String?, selectionArgs: Array<out String>?, sortOrder: String?
selection: String?, selectionArgs: Array<out String>?, sortOrder: String?,
): Cursor {
val file = getFileAndTypeForUri(uri).first
val columns = (projection ?: defaultColumns).mapNotNull {
@ -179,7 +179,7 @@ object Cache {
override fun update(
uri: Uri, contentValues: ContentValues?,
selection: String?, selectionArgs: Array<out String>?
selection: String?, selectionArgs: Array<out String>?,
): Int = unsupported
override fun openFile(uri: Uri, mode: String): ParcelFileDescriptor? {