aboutsummaryrefslogtreecommitdiff
path: root/stage1/resolver.scala
diff options
context:
space:
mode:
authorChristopher Vogt <oss.nsp@cvogt.org>2016-11-13 18:59:12 -0500
committerChristopher Vogt <oss.nsp@cvogt.org>2017-02-13 10:13:05 -0500
commitd1cbc1efffd5c2a6511f1ccca43ccfb37a7f1af8 (patch)
tree3cf36e22305cc1da608667cfef85afcf682cc21a /stage1/resolver.scala
parent9f89d16aa3ca5f96d73a8394d5159dc78dd5d7cf (diff)
downloadcbt-d1cbc1efffd5c2a6511f1ccca43ccfb37a7f1af8.tar.gz
cbt-d1cbc1efffd5c2a6511f1ccca43ccfb37a7f1af8.tar.bz2
cbt-d1cbc1efffd5c2a6511f1ccca43ccfb37a7f1af8.zip
remove some unnecessary Context fields while we are modifying context
Diffstat (limited to 'stage1/resolver.scala')
-rw-r--r--stage1/resolver.scala6
1 files changed, 4 insertions, 2 deletions
diff --git a/stage1/resolver.scala b/stage1/resolver.scala
index e6e4588..97cd36a 100644
--- a/stage1/resolver.scala
+++ b/stage1/resolver.scala
@@ -19,13 +19,15 @@ trait DependencyImplementation extends Dependency{
protected lazy val taskCache = new PerClassCache(transientCache, moduleKey)
private[cbt] def targetClasspath: ClassPath
- def dependencyClasspathArray: Array[File] = dependencyClasspath.files.toArray
def exportedClasspathArray: Array[File] = exportedClasspath.files.toArray
def exportedClasspath: ClassPath
def dependenciesArray: Array[Dependency] = dependencies.to
- @deprecated("this method is replaced by lastModifiedCompat","")
+ @deprecated("this method was replaced by lastModifiedCompat","")
def needsUpdateCompat = true
+ @deprecated("this method was replaced by dependenciesArray","")
+ def dependencyClasspathArray = dependencyClasspath.files.toArray
+
/*
//private type BuildCache = KeyLockedLazyCache[Dependency, Future[ClassPath]]