Skip to content

Commit e7439e5

Browse files
committed
Use JavaConverters instead of JavaConversions
1 parent 34316d8 commit e7439e5

File tree

1 file changed

+2
-2
lines changed
  • jvm/src/test/scala/scala/util/parsing/combinator

1 file changed

+2
-2
lines changed

Diff for: jvm/src/test/scala/scala/util/parsing/combinator/t4929.scala

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import scala.util.parsing.json._
22
import java.util.concurrent._
3-
import collection.JavaConversions._
3+
import collection.JavaConverters._
44

55
import org.junit.Test
66

@@ -36,6 +36,6 @@ class t4929 {
3636
thread.setDaemon(true)
3737
thread.start()
3838
}
39-
errors foreach { throw(_) }
39+
errors.asScala foreach { throw(_) }
4040
}
4141
}

0 commit comments

Comments
 (0)