aboutsummaryrefslogtreecommitdiff
path: root/src/clojure/contrib/pprint
diff options
context:
space:
mode:
Diffstat (limited to 'src/clojure/contrib/pprint')
-rw-r--r--src/clojure/contrib/pprint/examples/json.clj1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/clojure/contrib/pprint/examples/json.clj b/src/clojure/contrib/pprint/examples/json.clj
index f62f81a7..3cde1751 100644
--- a/src/clojure/contrib/pprint/examples/json.clj
+++ b/src/clojure/contrib/pprint/examples/json.clj
@@ -72,7 +72,6 @@ This is an example of using a pretty printer dispatch function to generate JSON
;; Handle printable JSON escapes before ASCII
(= cp 34) (print "\\\"")
(= cp 92) (print "\\\\")
- (= cp 47) (print "\\/")
;; Print simple ASCII characters
(< 31 cp 127) (print (.charAt s i))
;; Handle non-printable JSON escapes