소스 검색

Fix kotlin spotless check

Signed-off-by: alperozturk <alper_ozturk@proton.me>
alperozturk 11 달 전
부모
커밋
331b7c2c6e
1개의 변경된 파일1개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 2
      app/src/main/java/com/owncloud/android/ui/unifiedsearch/UnifiedSearchRemoteRepository.kt

+ 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,