Skip to content

Commit e4d17e3

Browse files
committed
don't recreate vector
1 parent f1b362a commit e4d17e3

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/java_time/defconversion.clj

+1-2
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,7 @@
7272
(defn- gen-implicit-arities [nm tp arities]
7373
(for [arity arities]
7474
(let [args (mapv #(gensym (str "arg_" (inc %) "_")) (range arity))]
75-
`([~@args]
76-
(call-conversion ~nm ~tp ~args)))))
75+
`(~args (call-conversion ~nm ~tp ~args)))))
7776

7877
(defn get-path [from to]
7978
(let [[p _] (g/conversion-fn @graph

0 commit comments

Comments
 (0)