Skip to content

Commit 762d013

Browse files
committed
Avoid double classpath checks from mkClasspath
1 parent 028615e commit 762d013

File tree

1 file changed

+2
-11
lines changed

1 file changed

+2
-11
lines changed

compiler/test/dotty/tools/vulpix/TestConfiguration.scala

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -35,17 +35,8 @@ object TestConfiguration {
3535
Properties.dottyCompiler
3636
))
3737

38-
val withStagingClasspath = mkClasspath(List(
39-
Properties.scalaLibrary,
40-
Properties.scalaAsm,
41-
Properties.jlineTerminal,
42-
Properties.jlineReader,
43-
Properties.compilerInterface,
44-
Properties.dottyInterfaces,
45-
Properties.dottyLibrary,
46-
Properties.dottyStaging,
47-
Properties.dottyCompiler
48-
))
38+
val withStagingClasspath =
39+
withCompilerClasspath + File.pathSeparator + mkClasspath(List(Properties.dottyStaging))
4940

5041
def mkClasspath(classpaths: List[String]): String =
5142
classpaths.map({ p =>

0 commit comments

Comments
 (0)