Skip to content

Commit 1f233ad

Browse files
fogusstuarthalloway
authored andcommitted
Fixes dumb little debug messages. CLJ-794
Signed-off-by: Stuart Halloway <[email protected]>
1 parent bc9f7ce commit 1f233ad

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/clj/clojure/core_print.clj

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,6 @@
152152
(print-ctor o #(print-sequential "[" print-dup " " "]" %1 %2) w))
153153

154154
(defmethod print-dup clojure.lang.IPersistentCollection [o, ^Writer w]
155-
(print " ipcpd ")
156155
(print-meta o w)
157156
(.write w "#=(")
158157
(.write w (.getName ^Class (class o)))
@@ -266,7 +265,7 @@
266265
(defmethod print-dup java.math.BigDecimal [o w] (print-method o w))
267266
(defmethod print-dup clojure.lang.BigInt [o w] (print-method o w))
268267
(defmethod print-dup java.math.BigInteger [o w] (print-method o w))
269-
(defmethod print-dup clojure.lang.PersistentHashMap [o w] (print " phmpd ") (print-method o w))
268+
(defmethod print-dup clojure.lang.PersistentHashMap [o w] (print-method o w))
270269
(defmethod print-dup clojure.lang.PersistentHashSet [o w] (print-method o w))
271270
(defmethod print-dup clojure.lang.PersistentVector [o w] (print-method o w))
272271
(defmethod print-dup clojure.lang.LazilyPersistentVector [o w] (print-method o w))

0 commit comments

Comments
 (0)