Removed try-catch from extract-common-docstring function.

This commit is contained in:
Nicolas Buduroi 2011-11-13 13:36:11 -05:00
parent 52b8b2c587
commit ae296b3e6b

View file

@ -123,8 +123,7 @@
(if (symbol? sym)
(do
(when (= 'ns (first form))
(try (require sym)
(catch Exception _)))
(require sym))
(let [nspace (find-ns sym)
docstring (if nspace
(-> nspace meta :doc)