aboutsummaryrefslogtreecommitdiff
path: root/stage2/plugins/Dotty.scala
diff options
context:
space:
mode:
authorChristopher Vogt <oss.nsp@cvogt.org>2017-02-22 22:27:31 +0800
committerChristopher Vogt <oss.nsp@cvogt.org>2017-02-22 22:27:31 +0800
commit698ef6c1d83215461275f9690a26178be3cae3fb (patch)
tree269d4325dfd4d4155743bd490c4999e0b3759c95 /stage2/plugins/Dotty.scala
parentee4f446e1dbef8f4983525376abf2274c01d0395 (diff)
downloadcbt-698ef6c1d83215461275f9690a26178be3cae3fb.tar.gz
cbt-698ef6c1d83215461275f9690a26178be3cae3fb.tar.bz2
cbt-698ef6c1d83215461275f9690a26178be3cae3fb.zip
a few hopefully simplifying rewirings in the implicits
Diffstat (limited to 'stage2/plugins/Dotty.scala')
-rw-r--r--stage2/plugins/Dotty.scala5
1 files changed, 2 insertions, 3 deletions
diff --git a/stage2/plugins/Dotty.scala b/stage2/plugins/Dotty.scala
index 9de2218..c96dbcb 100644
--- a/stage2/plugins/Dotty.scala
+++ b/stage2/plugins/Dotty.scala
@@ -16,7 +16,7 @@ trait Dotty extends BaseBuild{
override def dependencies: Seq[Dependency] = Seq( dottyLibrary )
private lazy val dottyLib = new DottyLib(
- logger, context.cbtLastModified, context.paths.mavenCache, dottyCompiler
+ context.cbtLastModified, context.paths.mavenCache, dottyCompiler
)
def compileJavaFirst: Boolean = false
@@ -69,11 +69,10 @@ object Dotty{
}
class DottyLib(
- logger: Logger,
cbtLastModified: Long,
mavenCache: File,
dottyCompiler: DependencyImplementation
-)(implicit transientCache: java.util.Map[AnyRef,AnyRef], classLoaderCache: ClassLoaderCache){
+)(implicit transientCache: java.util.Map[AnyRef,AnyRef], classLoaderCache: ClassLoaderCache, logger: Logger){
val lib = new Lib(logger)
import lib._