aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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."