ktlint: Single space expected between colon and return type

Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
This commit is contained in:
Andy Scherzinger 2023-12-05 16:35:43 +01:00
parent 9395a35af6
commit d7f8d1ecb2
No known key found for this signature in database
GPG Key ID: 6CADC7E3523C308B

View File

@ -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)
}