(defn read-properties "Read properties from file-able." [file-able] (with-open [f (java.io.FileInputStream. (file file-able))] (doto (Properties.) (.load f))))
Comments top
No comments for read-properties. Log in to add a comment.