Naming convention and no need for a val for presenter
This commit is contained in:
parent
8647016e61
commit
dd10fbe395
5 changed files with 6 additions and 6 deletions
|
|
@ -48,7 +48,7 @@ class MainActivity : NodeComponentActivity() {
|
|||
buildContext = it,
|
||||
appComponentOwner = applicationContext as DaggerComponentOwner,
|
||||
authenticationService = appBindings.authenticationService(),
|
||||
rootPresenter = appBindings.rootPresenter()
|
||||
presenter = appBindings.rootPresenter()
|
||||
)
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -60,7 +60,7 @@ class RootFlowNode(
|
|||
),
|
||||
private val appComponentOwner: DaggerComponentOwner,
|
||||
private val authenticationService: MatrixAuthenticationService,
|
||||
rootPresenter: RootPresenter
|
||||
presenter: RootPresenter
|
||||
) :
|
||||
ParentNode<RootFlowNode.NavTarget>(
|
||||
navModel = backstack,
|
||||
|
|
@ -70,7 +70,7 @@ class RootFlowNode(
|
|||
DaggerComponentOwner by appComponentOwner {
|
||||
|
||||
private val matrixClientsHolder = ConcurrentHashMap<SessionId, MatrixClient>()
|
||||
private val presenterConnector = presenterConnector(rootPresenter)
|
||||
private val presenterConnector = presenterConnector(presenter)
|
||||
|
||||
override fun onBuilt() {
|
||||
super.onBuilt()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue