From 5651c2ee97bc3dfc8a4f4a3407acb04f56b17fcf Mon Sep 17 00:00:00 2001 From: Michael Klishin Date: Mon, 18 May 2015 06:33:16 -0700 Subject: [PATCH] This is no longer necessary Since we no longer support Clojure 1.3. --- src/clojure/monger/joda_time.clj | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/src/clojure/monger/joda_time.clj b/src/clojure/monger/joda_time.clj index cdddf0c..863c2a1 100644 --- a/src/clojure/monger/joda_time.clj +++ b/src/clojure/monger/joda_time.clj @@ -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))