Un-implicit & deprecated Seq2Vector

This commit is contained in:
Dale Wijnand 2017-07-20 11:29:55 +01:00
parent a068736836
commit be1b4897e9
No known key found for this signature in database
GPG Key ID: 4F256E3D151DF5EF
1 changed files with 2 additions and 1 deletions

View File

@ -8,7 +8,8 @@ trait Import {
type URI = java.net.URI
type URL = java.net.URL
implicit def Seq2Vector[T](s: Seq[T]): Vector[T] = s.toVector
@deprecated("Will be removed in sbt 2", "1.0.0-RC3")
def Seq2Vector[T](s: Seq[T]): Vector[T] = s.toVector
// sbt
val StdoutOutput = sbt.OutputStrategy.StdoutOutput