diff options
-rw-r--r-- | src/main/clojure/clojure/contrib/shell.clj | 5 | ||||
-rw-r--r-- | src/main/clojure/clojure/contrib/shell_out.clj | 5 |
2 files changed, 8 insertions, 2 deletions
diff --git a/src/main/clojure/clojure/contrib/shell.clj b/src/main/clojure/clojure/contrib/shell.clj index a4c610e9..63467664 100644 --- a/src/main/clojure/clojure/contrib/shell.clj +++ b/src/main/clojure/clojure/contrib/shell.clj @@ -11,9 +11,12 @@ ; Conveniently launch a sub-process providing to its stdin and ; collecting its stdout +;; DEPRECATED in 1.2: Promoted to clojure.java.shell + (ns ^{:author "Chris Houser", - :doc "Conveniently launch a sub-process providing to its stdin and + :deprecated "1.2" + :doc "Conveniently launch a sub-process providing to its stdin and collecting its stdout"} clojure.contrib.shell (:import (java.io InputStreamReader OutputStreamWriter))) diff --git a/src/main/clojure/clojure/contrib/shell_out.clj b/src/main/clojure/clojure/contrib/shell_out.clj index 97c09ac1..8fcd3680 100644 --- a/src/main/clojure/clojure/contrib/shell_out.clj +++ b/src/main/clojure/clojure/contrib/shell_out.clj @@ -11,9 +11,12 @@ ; Conveniently launch a sub-process providing to its stdin and ; collecting its stdout +;; DEPRECATED in 1.2: Promoted to clojure.java.shell + (ns ^{:author "Chris Houser", - :doc "Conveniently launch a sub-process providing to its stdin and + :deprecated "1.2" + :doc "Conveniently launch a sub-process providing to its stdin and collecting its stdout"} clojure.contrib.shell-out (:import (java.io InputStreamReader OutputStreamWriter))) |