Skip to content

Commit

Permalink
Merge pull request #638 from smarter/less-dotty
Browse files Browse the repository at this point in the history
CompilerArguments: remove Dotty special-case
  • Loading branch information
jvican authored Mar 22, 2019
2 parents 52286d0 + e035147 commit ddce582
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ final class CompilerArguments(
(IO.parseClasspath(System.getProperty(k, "")) * "*.jar").get)

private[this] def include(flag: Boolean, jars: File*) =
if (flag || ScalaInstance.isDotty(scalaInstance.version)) jars
if (flag) jars
else Nil

private[this] def abs(files: Seq[File]) =
Expand Down

0 comments on commit ddce582

Please sign in to comment.