mirror of
https://github.com/nextcloud/talk-android.git
synced 2024-11-23 21:45:42 +03:00
Replace '@JvmField' with 'lateinit'
Signed-off-by: Tim Krüger <t@timkrueger.me>
This commit is contained in:
parent
00f06c6ef2
commit
d5214ee29c
1 changed files with 3 additions and 5 deletions
|
@ -107,12 +107,10 @@ class ConversationInfoController(args: Bundle) :
|
|||
private val binding: ControllerConversationInfoBinding by viewBinding(ControllerConversationInfoBinding::bind)
|
||||
|
||||
@Inject
|
||||
@JvmField
|
||||
var ncApi: NcApi? = null
|
||||
lateinit var ncApi: NcApi
|
||||
|
||||
@Inject
|
||||
@JvmField
|
||||
var eventBus: EventBus? = null
|
||||
lateinit var eventBus: EventBus
|
||||
|
||||
private val conversationToken: String?
|
||||
private val conversationUser: User?
|
||||
|
@ -162,7 +160,7 @@ class ConversationInfoController(args: Bundle) :
|
|||
|
||||
override fun onAttach(view: View) {
|
||||
super.onAttach(view)
|
||||
eventBus?.register(this)
|
||||
eventBus.register(this)
|
||||
|
||||
if (databaseStorageModule == null) {
|
||||
databaseStorageModule = DatabaseStorageModule(conversationUser!!, conversationToken)
|
||||
|
|
Loading…
Reference in a new issue