aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Bedra and Stuart Halloway <pair@clojure.com>2010-07-23 11:23:58 -0400
committerAaron Bedra and Stuart Halloway <pair@clojure.com>2010-07-23 11:23:58 -0400
commite1c5056f0bea0aadebf6b2384d66a36c034d3251 (patch)
tree9e8ee7e2ec21f60550133d4227586b83ad63d846
parent4cce354d53502c1047990e96c0b424c41a4e0b67 (diff)
properties is deprecated (moved to java-utils)
-rw-r--r--src/main/clojure/clojure/contrib/properties.clj5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/main/clojure/clojure/contrib/properties.clj b/src/main/clojure/clojure/contrib/properties.clj
index fc738416..0e210206 100644
--- a/src/main/clojure/clojure/contrib/properties.clj
+++ b/src/main/clojure/clojure/contrib/properties.clj
@@ -6,7 +6,10 @@
; the terms of this license.
; You must not remove this notice, or any other, from this software.
-(ns clojure.contrib.properties
+;; DEPRECATED in 1.2. Moved to c.c.java-utils
+
+(ns ^{:deprecated "1.2"}
+ clojure.contrib.properties
(:use [clojure.contrib.string :only (as-str)]
[clojure.contrib.io :only (file)])
(:import (java.util Properties)