aboutsummaryrefslogtreecommitdiff
path: root/modules/gen-html-docs/src
diff options
context:
space:
mode:
authorBen Smith-Mannschott <bsmith.occs@gmail.com>2010-08-26 21:38:13 +0200
committerStuart Sierra <mail@stuartsierra.com>2010-09-03 12:23:36 -0400
commit2c6c9e3eca8039964b451be38cdf9d7044dd0b06 (patch)
treec4abb7e1c17d2fbcc4898545379cefa373c4409e /modules/gen-html-docs/src
parent51e2efbe391e4a45fb6fcbc8b7954ed0b32e5f03 (diff)
remove deprecated clojure.contrib.io
Signed-off-by: Stuart Sierra <mail@stuartsierra.com>
Diffstat (limited to 'modules/gen-html-docs/src')
-rw-r--r--modules/gen-html-docs/src/main/clojure/clojure/contrib/gen_html_docs.clj6
1 files changed, 2 insertions, 4 deletions
diff --git a/modules/gen-html-docs/src/main/clojure/clojure/contrib/gen_html_docs.clj b/modules/gen-html-docs/src/main/clojure/clojure/contrib/gen_html_docs.clj
index 2e54aeee..5046c163 100644
--- a/modules/gen-html-docs/src/main/clojure/clojure/contrib/gen_html_docs.clj
+++ b/modules/gen-html-docs/src/main/clojure/clojure/contrib/gen_html_docs.clj
@@ -46,8 +46,7 @@
:doc "Generates a single HTML page that contains the documentation for
one or more Clojure libraries."}
clojure.contrib.gen-html-docs
- (:require [clojure.contrib.io :as io]
- [clojure.contrib.string :as s])
+ (:require [clojure.contrib.string :as s])
(:use [clojure.contrib repl-utils def prxml])
(:import [java.lang Exception]
[java.util.regex Pattern]))
@@ -458,7 +457,7 @@ libraries."
"Calls generate-documentation on the libraries named by libs and
emits the generated HTML to the path named by path."
[path libs]
- (io/spit path (generate-documentation libs)))
+ (spit path (generate-documentation libs)))
(comment
(generate-documentation-to-file
@@ -481,7 +480,6 @@ emits the generated HTML to the path named by path."
'clojure.contrib.complex-numbers
'clojure.contrib.cond
'clojure.contrib.def
- 'clojure.contrib.io
'clojure.contrib.enum
'clojure.contrib.error-kit
'clojure.contrib.except