diff options
author | Konrad Hinsen <konrad.hinsen@fastmail.net> | 2010-10-26 21:45:00 +0200 |
---|---|---|
committer | Konrad Hinsen <konrad.hinsen@fastmail.net> | 2010-10-26 21:45:00 +0200 |
commit | 57aae4f987769e9ed3e1148a390bf68758d5a91f (patch) | |
tree | ef2449b39f8413b4f03fa53ccab9c050956f2545 | |
parent | 23d2e36247873f6818faba3bfe18ddbe9547fb6b (diff) |
generic: remove superfluous use clause
-rw-r--r-- | modules/generic/src/main/clojure/clojure/contrib/generic.clj | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/modules/generic/src/main/clojure/clojure/contrib/generic.clj b/modules/generic/src/main/clojure/clojure/contrib/generic.clj index 44cc6db7..5d34a8dd 100644 --- a/modules/generic/src/main/clojure/clojure/contrib/generic.clj +++ b/modules/generic/src/main/clojure/clojure/contrib/generic.clj @@ -1,9 +1,9 @@ ;; Support code for generic interfaces ;; by Konrad Hinsen -;; last updated May 4, 2009 +;; last updated October 26, 2010 -;; Copyright (c) Konrad Hinsen, 2009. All rights reserved. The use +;; Copyright (c) Konrad Hinsen, 2009-2010. All rights reserved. The use ;; and distribution terms for this software are covered by the Eclipse ;; Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php) ;; which can be found in the file epl-v10.html at the root of this @@ -22,8 +22,7 @@ collections) and partly provide additional functions that can be defined for a wide variety of types (functors, math functions). More functions will be added in the future."} - clojure.contrib.generic - (:use [clojure.contrib.types :only (defadt)])) + clojure.contrib.generic) ; ; A dispatch function that separates nulary, unary, binary, and |