(defn make-license [{:keys [name url distribution comments]}] (doto (License.) (.setName name) (.setUrl url) (.setDistribution (and distribution (clojure.core/name distribution))) (.setComments comments)))
Comments top
No comments for make-license. Log in to add a comment.