File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
compilation/src/main/scala/scala/tools/nsc Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ import java.util.stream.Collectors
99import com .typesafe .config .ConfigFactory
1010
1111import scala .collection .JavaConverters ._
12+ import scala .collection .mutable .ListBuffer
1213import scala .io .Source
1314import scala .io .Codec
1415
@@ -86,7 +87,7 @@ object BenchmarkUtils {
8687 def initDeps (corpusSourcePath : Path ): Seq [Path ] = {
8788 val depsDir = Paths .get(ConfigFactory .load.getString(" deps.localdir" ))
8889 val depsFile = corpusSourcePath.resolve(" deps.txt" )
89- val depsClasspath = Seq .newBuilder [Path ]
90+ val depsClasspath = new ListBuffer [Path ]
9091 if (Files .exists(depsFile)) {
9192 for (depUrlString <- Files .lines(depsFile).iterator().asScala) {
9293 val depUrl = new URL (depUrlString)
You can’t perform that action at this time.
0 commit comments