mirror of https://github.com/sbt/sbt.git
Give IvyPaths a nicer toString
This commit is contained in:
parent
65a3162b43
commit
9dd4014553
|
|
@ -11,6 +11,7 @@ import sbt.librarymanagement._
|
|||
|
||||
final class IvyPaths(val baseDirectory: File, val ivyHome: Option[File]) {
|
||||
def withBase(newBaseDirectory: File) = new IvyPaths(newBaseDirectory, ivyHome)
|
||||
override def toString = s"IvyPaths($baseDirectory, $ivyHome)"
|
||||
}
|
||||
sealed trait IvyConfiguration {
|
||||
type This <: IvyConfiguration
|
||||
|
|
|
|||
Loading…
Reference in New Issue