Removed TODOs to use RxJava as RxJava isn't supported in Kotlin multi platform projects

This commit is contained in:
dankito 2020-09-28 15:10:25 +02:00
parent 95215edc7c
commit 9650fb59d8
1 changed files with 3 additions and 3 deletions

View File

@ -898,7 +898,7 @@ open class BankingPresenter(
val banks = ArrayList(this.allBanks)
ArrayList(banksChangedListeners).forEach {
it(banks) // TODO: use RxJava for this
it(banks)
}
}
@ -913,7 +913,7 @@ open class BankingPresenter(
protected open fun callRetrievedAccountTransactionsResponseListener(response: GetTransactionsResponse) {
ArrayList(retrievedAccountTransactionsResponseListeners).forEach {
it(response) // TODO: use RxJava for this
it(response)
}
}
@ -930,7 +930,7 @@ open class BankingPresenter(
val accounts = ArrayList(selectedAccounts)
ArrayList(selectedAccountsChangedListeners).forEach {
it(accounts) // TODO: use RxJava for this
it(accounts)
}
}