From 9049773eab2dd7675a9b1cacd92bbe67825cf1ea Mon Sep 17 00:00:00 2001 From: Christopher Vogt Date: Sun, 19 Mar 2017 19:42:19 -0400 Subject: explicitly convert to Vector everywhere for hopefully performance benefits --- coursier/Coursier.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'coursier/Coursier.scala') diff --git a/coursier/Coursier.scala b/coursier/Coursier.scala index 8a66aee..f5727a7 100644 --- a/coursier/Coursier.scala +++ b/coursier/Coursier.scala @@ -40,7 +40,7 @@ object Coursier{ case Right(file) => file }) - resolution.dependencies.map( d => cbt.JavaDependency(d.module.organization,d.module.name, d.version)).to[collection.immutable.Seq] + resolution.dependencies.map( d => cbt.JavaDependency(d.module.organization,d.module.name, d.version)).toVector } } } -- cgit v1.2.3