On 02/10/2010 12:00 PM, Naftoli Gugenheim wrote:
I mean to wrap the whole flatMap:
case false => NodeSeq.fromSeq(user.accounts.flatMap...
Gotcha. I now have:
case false => NodeSeq.fromSeq(
user.accounts.flatMap({
case (_, account) => bindAccountFields(in, account, false)
}).toSeq
)
}
and that seems to have done it. I like type safety, but sometimes it's a
PITA. :)
Thanks for the help.
--
You received this message because you are subscribed to the Google Groups
"Lift" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/liftweb?hl=en.