Browse Source

Fix kotlin spotless check

Signed-off-by: alperozturk <alper_ozturk@proton.me>
alperozturk 11 months ago
parent
commit
331b7c2c6e

+ 1 - 2
app/src/main/java/com/owncloud/android/ui/unifiedsearch/UnifiedSearchRemoteRepository.kt

@@ -29,7 +29,7 @@ class UnifiedSearchRemoteRepository(
 
     private fun runAsyncWithNcClient(callback: (client: NextcloudClient) -> Unit) {
         val coroutineExceptionHandler = CoroutineExceptionHandler { _, exception ->
-            Log_OC.d(tag,"CoroutineExceptionHandler got at runAsyncWithNcClient $exception")
+            Log_OC.d(tag, "CoroutineExceptionHandler got at runAsyncWithNcClient $exception")
         }
 
         CoroutineScope(Dispatchers.IO).launch(coroutineExceptionHandler) {
@@ -38,7 +38,6 @@ class UnifiedSearchRemoteRepository(
         }
     }
 
-
     override fun queryAll(
         query: String,
         onResult: (UnifiedSearchResult) -> Unit,