mirror of https://github.com/sbt/sbt.git
remove dead code in TestFramework
This commit is contained in:
parent
c2ee8574b2
commit
bedc129d0e
|
|
@ -116,11 +116,6 @@ object TestFramework
|
||||||
case _ => sys.error("Could not call 'fingerprints' on framework " + framework)
|
case _ => sys.error("Could not call 'fingerprints' on framework " + framework)
|
||||||
}
|
}
|
||||||
|
|
||||||
private val ScalaCompilerJarPackages = "scala.tools." :: "jline." :: "ch.epfl.lamp." :: Nil
|
|
||||||
|
|
||||||
private val TestStartName = "test-start"
|
|
||||||
private val TestFinishName = "test-finish"
|
|
||||||
|
|
||||||
private[sbt] def safeForeach[T](it: Iterable[T], log: Logger)(f: T => Unit): Unit =
|
private[sbt] def safeForeach[T](it: Iterable[T], log: Logger)(f: T => Unit): Unit =
|
||||||
it.foreach(i => try f(i) catch { case e: Exception => log.trace(e); log.error(e.toString) })
|
it.foreach(i => try f(i) catch { case e: Exception => log.trace(e); log.error(e.toString) })
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue