aboutsummaryrefslogtreecommitdiff
path: root/src/clojure/contrib/lib/lib.clj
diff options
context:
space:
mode:
authorStuart Sierra <mail@stuartsierra.com>2008-08-28 19:49:57 +0000
committerStuart Sierra <mail@stuartsierra.com>2008-08-28 19:49:57 +0000
commit928908c2902cd2eccd18daa96fd5204a6df71b4f (patch)
tree55ef18d3ba72f61ab08e12d6f0af9beb751bd5b5 /src/clojure/contrib/lib/lib.clj
parentae5000e3c0e9706b478d689986ba996de4aed3c8 (diff)
lib.clj: removed format and printf, which are in clojure core as of SVN rev. 1007
Diffstat (limited to 'src/clojure/contrib/lib/lib.clj')
-rw-r--r--src/clojure/contrib/lib/lib.clj10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/clojure/contrib/lib/lib.clj b/src/clojure/contrib/lib/lib.clj
index c5324b07..fdf3410c 100644
--- a/src/clojure/contrib/lib/lib.clj
+++ b/src/clojure/contrib/lib/lib.clj
@@ -189,16 +189,6 @@
[root system]
[root runtime system])))
-(defn- format
- "Formats a string using String/format"
- [fmt & args]
- (String/format fmt (to-array args)))
-
-(defn- printf
- "Prints formatted output"
- [fmt & args]
- (print (apply format fmt args)))
-
(defn- throw-if
"Throws an exception with a message if pred is true. See
java.util.Formatter for format string syntax."