0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-03-10 14:51:37 -05:00

Remove unused code from collimp ns.

This commit is contained in:
Andrey Antukh 2016-11-20 23:07:57 +01:00
parent ae4e7e6139
commit 6d0737e4a3
No known key found for this signature in database
GPG key ID: 4DFEBCB8316A8B95

View file

@ -26,7 +26,7 @@
(:import [java.io Reader PushbackReader]
[org.im4java.core Info]))
;; --- Constants & Specs
;; --- Constants & Helpers
(def ^:const +imates-uuid-ns+ #uuid "3642a582-565f-4070-beba-af797ab27a6e")
@ -37,15 +37,7 @@
(s/def ::import-entry
(s/keys :req-un [::name ::path ::regex]))
;; --- CLI Helpers
(defn printerr
[& args]
(binding [*out* *err*]
(apply println args)))
(defn pushback-reader
(defn- pushback-reader
[reader]
(PushbackReader. ^Reader reader))