Adding space between properties and the function

This commit is contained in:
Hritik Wadhwa 2020-03-24 22:13:23 +05:30
parent 76cf36e1e1
commit 3be6741446

View File

@ -27,6 +27,7 @@ import org.kiwix.kiwixmobile.core.base.BaseContract.View
abstract class BasePresenter<T : View<*>?> : Presenter<T> {
@JvmField val compositeDisposable = CompositeDisposable()
@JvmField var view: T? = null
override fun attachView(view: T) {
this.view = view
}