diff options
-rw-r--r-- | modules/find-namespaces/src/main/clojure/clojure/contrib/find_namespaces.clj | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/find-namespaces/src/main/clojure/clojure/contrib/find_namespaces.clj b/modules/find-namespaces/src/main/clojure/clojure/contrib/find_namespaces.clj index b45a7d16..f31e5ea5 100644 --- a/modules/find-namespaces/src/main/clojure/clojure/contrib/find_namespaces.clj +++ b/modules/find-namespaces/src/main/clojure/clojure/contrib/find_namespaces.clj @@ -54,7 +54,7 @@ unevaluated form. Returns nil if read fails or if a ns declaration cannot be found. The ns declaration must be the first Clojure form in the file, except for (comment ...) forms." - [#^PushbackReader rdr] + [^PushbackReader rdr] (try (loop [] (let [form (read rdr)] (cond |