diff options
author | Aaron Bedra and Stuart Halloway <pair@clojure.com> | 2010-07-23 11:23:58 -0400 |
---|---|---|
committer | Aaron Bedra and Stuart Halloway <pair@clojure.com> | 2010-07-23 11:35:32 -0400 |
commit | 28fb2d9be2d388bbacea9bebad5870c41bfa5faa (patch) | |
tree | 739be8ccaf0283f90c2646e985143a99481c321d | |
parent | d37b2291dfcc5e6dc38a4601fbd09fa403bd15b0 (diff) |
properties is deprecated (moved to java-utils)
-rw-r--r-- | src/main/clojure/clojure/contrib/properties.clj | 5 |
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) |