We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents dd5bd17 + d0bbf06 commit 97cf5b4Copy full SHA for 97cf5b4
src/partest/scala/tools/partest/package.scala
@@ -177,7 +177,7 @@ package object partest {
177
)
178
179
def allPropertiesString = {
180
- import scala.collection.JavaConversions._
181
- System.getProperties.toList.sorted map { case (k, v) => "%s -> %s\n".format(k, v) } mkString ""
+ import scala.collection.JavaConverters._
+ System.getProperties.asScala.toList.sorted map { case (k, v) => "%s -> %s\n".format(k, v) } mkString ""
182
}
183
0 commit comments