From be1b4897e9e57ba3406b77904f7ad85e19a4eaf8 Mon Sep 17 00:00:00 2001 From: Dale Wijnand Date: Thu, 20 Jul 2017 11:29:55 +0100 Subject: [PATCH] Un-implicit & deprecated Seq2Vector --- sbt/src/main/scala/Import.scala | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sbt/src/main/scala/Import.scala b/sbt/src/main/scala/Import.scala index ce277f03b..4fb5c29df 100644 --- a/sbt/src/main/scala/Import.scala +++ b/sbt/src/main/scala/Import.scala @@ -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