This 2 services can also be `Lazy`

This commit is contained in:
Benoit Marty 2022-04-21 16:50:43 +02:00 committed by Benoit Marty
parent 0449606f0b
commit 016551f79f
1 changed files with 4 additions and 4 deletions

View File

@ -128,8 +128,8 @@ internal class DefaultSession @Inject constructor(
private val accountService: Lazy<AccountService>,
private val eventService: Lazy<EventService>,
private val contentScannerService: Lazy<ContentScannerService>,
private val identityService: IdentityService,
private val integrationManagerService: IntegrationManagerService,
private val identityService: Lazy<IdentityService>,
private val integrationManagerService: Lazy<IntegrationManagerService>,
private val thirdPartyService: Lazy<ThirdPartyService>,
private val callSignalingService: Lazy<CallSignalingService>,
private val spaceService: Lazy<SpaceService>,
@ -285,7 +285,7 @@ internal class DefaultSession @Inject constructor(
override fun contentScannerService(): ContentScannerService = contentScannerService.get()
override fun identityService() = identityService
override fun identityService(): IdentityService = identityService.get()
override fun fileService(): FileService = defaultFileService.get()
@ -295,7 +295,7 @@ internal class DefaultSession @Inject constructor(
override fun mediaService(): MediaService = mediaService.get()
override fun integrationManagerService() = integrationManagerService
override fun integrationManagerService(): IntegrationManagerService = integrationManagerService.get()
override fun callSignalingService(): CallSignalingService = callSignalingService.get()