This is no longer necessary

Since we no longer support Clojure 1.3.
This commit is contained in:
Michael Klishin 2015-05-18 06:33:16 -07:00
parent 3660992148
commit 5651c2ee97

View file

@ -43,18 +43,6 @@
;; Reader extensions
;;
(defmethod print-dup java.util.Date
[^java.util.Date d ^java.io.Writer out]
(.write out
(str "#="
`(java.util.Date. ~(.getYear d)
~(.getMonth d)
~(.getDate d)
~(.getHours d)
~(.getMinutes d)
~(.getSeconds d)))))
(defmethod print-dup org.joda.time.base.AbstractInstant
[^org.joda.time.base.AbstractInstant d out]
(print-dup (.toDate d) out))