minor cleanup of some Ivy-related code

This commit is contained in:
Mark Harrah 2010-09-12 23:14:30 -04:00
parent 26265e549e
commit 59e15f2c51
2 changed files with 2 additions and 2 deletions

View File

@ -92,7 +92,7 @@ final class IvySbt(configuration: IvyConfiguration)
def withModule[T](f: (Ivy,DefaultModuleDescriptor,String) => T): T =
withIvy[T] { ivy => f(ivy, moduleDescriptor, defaultConfig) }
private lazy val (moduleDescriptor: DefaultModuleDescriptor, defaultConfig: String) =
lazy val (moduleDescriptor: DefaultModuleDescriptor, defaultConfig: String) =
{
val (baseModule, baseConfiguration) =
moduleSettings match

View File

@ -21,7 +21,7 @@ object ScalaArtifacts
import ScalaArtifacts._
final class IvyScala(val scalaVersion: String, val configurations: Iterable[Configuration], val checkExplicit: Boolean, val filterImplicit: Boolean) extends NotNull
final class IvyScala(val scalaVersion: String, val configurations: Iterable[Configuration], val checkExplicit: Boolean, val filterImplicit: Boolean)
private object IvyScala
{
/** Performs checks/adds filters on Scala dependencies (if enabled in IvyScala). */