I have this code. The method returns a (User, Acl, Tree) tuple. Instead of accessing the data with _._1, _._2 etc I use match. Is there an easier(better) way then what I'm doing? Thanks
User.findUserJoinAclTree(3).map {
_ match {
case(user, acl, tree) =>
Logger.info(user.email)
Logger.info(acl.id)
Logger.info(tree.name)
}
}