aboutsummaryrefslogtreecommitdiff
path: root/stage1/ContextImplementation.scala
diff options
context:
space:
mode:
authorChristopher Vogt <oss.nsp@cvogt.org>2017-02-09 02:29:44 +0000
committerChristopher Vogt <oss.nsp@cvogt.org>2017-02-09 21:44:23 -0500
commitbee13ba7a4458482ce00a5c6bae4cd64328c4e5e (patch)
tree3eac3a3dee9fe2645673a7df09915d2f77f0b781 /stage1/ContextImplementation.scala
parent00157c927255a9c885287a7e16670561e8e6391e (diff)
downloadcbt-bee13ba7a4458482ce00a5c6bae4cd64328c4e5e.tar.gz
cbt-bee13ba7a4458482ce00a5c6bae4cd64328c4e5e.tar.bz2
cbt-bee13ba7a4458482ce00a5c6bae4cd64328c4e5e.zip
memoize task results across classes within a single run
Diffstat (limited to 'stage1/ContextImplementation.scala')
-rw-r--r--stage1/ContextImplementation.scala32
1 files changed, 16 insertions, 16 deletions
diff --git a/stage1/ContextImplementation.scala b/stage1/ContextImplementation.scala
index 3b610c0..30db597 100644
--- a/stage1/ContextImplementation.scala
+++ b/stage1/ContextImplementation.scala
@@ -2,19 +2,19 @@ package cbt
import java.io._
import java.lang._
-case class ContextImplementation(
- projectDirectory: File,
- cwd: File,
- argsArray: Array[String],
- enabledLoggersArray: Array[String],
- startCompat: Long,
- cbtHasChangedCompat: Boolean,
- scalaVersionOrNull: String,
- persistentCache: java.util.Map[AnyRef,AnyRef],
- transientCache: java.util.Map[AnyRef,AnyRef],
- cache: File,
- cbtHome: File,
- cbtRootHome: File,
- compatibilityTarget: File,
- parentBuildOrNull: BuildInterface
-) extends Context \ No newline at end of file
+class ContextImplementation(
+ val projectDirectory: File,
+ val cwd: File,
+ val argsArray: Array[String],
+ val enabledLoggersArray: Array[String],
+ val startCompat: Long,
+ val cbtHasChangedCompat: Boolean,
+ val scalaVersionOrNull: String,
+ val persistentCache: java.util.Map[AnyRef,AnyRef],
+ val transientCache: java.util.Map[AnyRef,AnyRef],
+ val cache: File,
+ val cbtHome: File,
+ val cbtRootHome: File,
+ val compatibilityTarget: File,
+ val parentBuildOrNull: BuildInterface
+) extends Context