Răsfoiți Sursa

ktlint: Single space expected between colon and return type

Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
Andy Scherzinger 1 an în urmă
părinte
comite
d7f8d1ecb2

+ 2 - 4
app/src/main/java/com/nextcloud/talk/dagger/modules/RepositoryModule.kt

@@ -131,14 +131,12 @@ class RepositoryModule {
     }
 
     @Provides
-    fun translateRepository(ncApi: NcApi):
-        TranslateRepository {
+    fun translateRepository(ncApi: NcApi): TranslateRepository {
         return TranslateRepositoryImpl(ncApi)
     }
 
     @Provides
-    fun provideChatRepository(ncApi: NcApi):
-        ChatRepository {
+    fun provideChatRepository(ncApi: NcApi): ChatRepository {
         return ChatRepositoryImpl(ncApi)
     }