aboutsummaryrefslogtreecommitdiff
path: root/stage2/BasicBuild.scala
diff options
context:
space:
mode:
authorChristopher Vogt <oss.nsp@cvogt.org>2017-03-29 08:36:39 -0400
committerChristopher Vogt <oss.nsp@cvogt.org>2017-04-01 23:35:35 -0400
commite7a21be0ca3cf7152b5798317fff346220caae32 (patch)
tree542a04bb1f3c55913fdc1b90d1e20f2e7bb636fb /stage2/BasicBuild.scala
parentec29b9f38711b2bb33b51e9bc220c17c7d09fcce (diff)
downloadcbt-e7a21be0ca3cf7152b5798317fff346220caae32.tar.gz
cbt-e7a21be0ca3cf7152b5798317fff346220caae32.tar.bz2
cbt-e7a21be0ca3cf7152b5798317fff346220caae32.zip
make .scala sources 2.12 compatible
Diffstat (limited to 'stage2/BasicBuild.scala')
-rw-r--r--stage2/BasicBuild.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/stage2/BasicBuild.scala b/stage2/BasicBuild.scala
index 2cf97e5..88922d9 100644
--- a/stage2/BasicBuild.scala
+++ b/stage2/BasicBuild.scala
@@ -17,7 +17,7 @@ trait BaseBuild extends BuildInterface with DependencyImplementation with SbtDep
// will create new instances given the context, which means operations in the
// overrides will happen multiple times and if they are not idempotent stuff likely breaks
def context: Context
- lazy val moduleKey: String = "BaseBuild("+target.string+")"
+ override lazy val moduleKey: String = "BaseBuild("+target.string+")"
implicit def transientCache: java.util.Map[AnyRef,AnyRef] = context.transientCache
implicit def libraries(implicit context: Context): libraries = new libraries(context, scalaVersion)
@@ -153,7 +153,7 @@ trait BaseBuild extends BuildInterface with DependencyImplementation with SbtDep
"-unchecked"
)
- final def lastModified: Long = compile.getOrElse(0L)
+ override final def lastModified: Long = compile.getOrElse(0L)
def triggerLoopFiles: Set[File] = sources.toSet