I have this Scala method with below error. Cannot convert into a Scala list.
def findAllQuestion():List[Question]={
questionDao.getAllQuestions()
}
type mismatch; found : java.util.List[com.aitrich.learnware.model.domain.entity.Question]
required:
scala.collection.immutable.List[com.aitrich.learnware.model.domain.entity.Question]