Skip to content

Commit

Permalink
Merge pull request #130 from clj-commons/hls/20240911-tiny-improvements
Browse files Browse the repository at this point in the history
Remove redundant require
  • Loading branch information
hlship authored Sep 16, 2024
2 parents 2cb5499 + 6292111 commit eb68c69
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/clj_commons/format/exceptions.clj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
"Format and output exceptions in a pretty (structured, formatted) way."
(:require [clojure.pprint :as pp]
[clojure.set :as set]
[clojure.string :as string]
[clojure.string :as str]
[clj-commons.ansi :refer [compose]]
[clj-commons.pretty-impl :refer [padding]])
Expand Down Expand Up @@ -900,4 +899,4 @@
(let [{:keys [class method names]} (transform-stack-trace-element current-dir-prefix (volatile! {}) e)]
(if (empty? names)
(str class "." method)
(->> names counted-terms (map counted-frame-name) (string/join "/")))))
(->> names counted-terms (map counted-frame-name) (str/join "/")))))

0 comments on commit eb68c69

Please sign in to comment.