Reputation:
They told me, scala.xml
has a bad performance, should not be used and will be eliminated in Scala 2.11. I can't find any proof link.
Is that so? Is there any proof link?
Upvotes: 1
Views: 647
Reputation: 139028
From the official "Overview of Scala 2.11" page (which by the way is currently the first result of a Google search for "scala.xml scala 2.11"):
The package scala.xml has been moved out of scala-library.jar. To compile code that contains XML literals, add a dependency on scala-xml or your preferred alternative.
So no, "they" were wrong. There are lots of problems with scala.xml
, but it's not going to be "eliminated" any time soon.
Upvotes: 3