From 1e5d1fd195f9a42b1771996998ef3c201d1e182c Mon Sep 17 00:00:00 2001 From: Chris Price Date: Sun, 18 Sep 2016 10:19:53 -0700 Subject: [PATCH] Change from `concat` to `into`, to ensure vector Since pomegranate mentions that it likes vectors as inputs to its functions, this commit changes the normalization function to use `into` instead of `concat`, to make sure that we get a vector instead of a sequence. --- leiningen-core/src/leiningen/core/classpath.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/leiningen-core/src/leiningen/core/classpath.clj b/leiningen-core/src/leiningen/core/classpath.clj index a23be32c..aac3730a 100644 --- a/leiningen-core/src/leiningen/core/classpath.clj +++ b/leiningen-core/src/leiningen/core/classpath.clj @@ -548,7 +548,7 @@ ;; it's important to preserve the metadata, because it is used for ;; profile merging, etc. (with-meta - (concat [id version] opts) + (into [id version] opts) (meta dep))))) (defn normalize-dep-vectors