How to port Scala 2.7.7 code that uses scala.collection.jcl to Scala 2.8?

I have code that refers to scala.collection.jcl written against Scala 2.7.7. Now I'm trying to compile it with Scala 2.8, and I get this error:

"The jcl value is not a member of the package collection.

Is there a replacement / replacement for jcl in 2.8?

+5
source share
1 answer

It seems that JavaConversions does the job a bit:

import scala.collection.JavaConversions._
+5
source

All Articles