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:35:32 -0400
commit28fb2d9be2d388bbacea9bebad5870c41bfa5faa (patch)
tree739be8ccaf0283f90c2646e985143a99481c321d
parentd37b2291dfcc5e6dc38a4601fbd09fa403bd15b0 (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)