Marc
Results
2
comments of
Marc
Hi, seems I have a different implementation: def parseAsJava(data: String, encoding: String): java.util.Map[String, java.util.List[String]] = { import scala.collection.JavaConverters._ parse(data, encoding).map { case (key, values) => key -> values.asJava }.asJava }...
Did you change it to "foreach" in your example? In the current revision there is also a "map".