We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8940605 commit f94a3f7Copy full SHA for f94a3f7
src/main/clojure/clojure/tools/namespace/find.clj
@@ -174,7 +174,7 @@
174
(mapcat #(find-ns-decls-in-dir % platform)
175
(filter #(.isDirectory ^File %) files))
176
(mapcat #(find-ns-decls-in-jarfile % platform)
177
- (filter classpath/jar-file? files)))))
+ (map #(JarFile. %) (filter classpath/jar-file? files))))))
178
179
(defn find-namespaces
180
"Searches a sequence of java.io.File objects (both directories and
0 commit comments