Skip to content

Commit

Permalink
remove redundant let
Browse files Browse the repository at this point in the history
  • Loading branch information
jimpil committed Aug 6, 2023
1 parent dfa6f83 commit c910165
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions src/clojure/langohr/core.clj
Original file line number Diff line number Diff line change
Expand Up @@ -294,11 +294,10 @@

(defn- platform-string
[]
(let []
(format "Clojure %s on %s %s"
(clojure-version)
(System/getProperty "java.vm.name")
(System/getProperty "java.version"))))
(format "Clojure %s on %s %s"
(clojure-version)
(System/getProperty "java.vm.name")
(System/getProperty "java.version")))

(def ^{:private true}
client-properties {"product" "Langohr"
Expand Down

0 comments on commit c910165

Please sign in to comment.