We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9048707 commit e324713Copy full SHA for e324713
src/clj/clojure/core.clj
@@ -5763,7 +5763,7 @@
5763
exception (Exception. message)
5764
raw-trace (.getStackTrace exception)
5765
boring? #(not= (.getMethodName ^StackTraceElement %) "doInvoke")
5766
- trace (into-array (drop 2 (drop-while boring? raw-trace)))]
+ trace (into-array StackTraceElement (drop 2 (drop-while boring? raw-trace)))]
5767
(.setStackTrace exception trace)
5768
(throw (clojure.lang.Compiler$CompilerException.
5769
*file*
@@ -7718,4 +7718,4 @@
7718
(defn uri?
7719
"Return true if x is a java.net.URI"
7720
{:added "1.9"}
7721
- [x] (instance? java.net.URI x))
+ [x] (instance? java.net.URI x))
0 commit comments