https://kotlinlang.org logo
s

stkent

12/07/2017, 2:22 PM
Copy code
private lateinit var tree: Node

  init {
    buildTree()
  }
Is there a way to avoid needing to have
tree
be
lateinit var
in the above?