Skip to content

Commit

Permalink
PR #69 code review comments [1]
Browse files Browse the repository at this point in the history
  • Loading branch information
evg-tso committed Sep 10, 2023
1 parent 8cde93c commit 815b7bb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
[cheshire "5.11.0"]
[tortue/spy "2.14.0"]
[com.fasterxml.jackson.core/jackson-databind "2.11.2"]
[clj-kondo "2022.04.25"]
[clj-kondo "2023.09.07"]
[com.clojure-goes-fast/clj-java-decompiler "0.3.4"]]
:eftest {:multithread? false
:report eftest.report.junit/report
Expand Down
4 changes: 2 additions & 2 deletions src/main/clojure/aerospike_clj/utils.clj
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
(= bin-names [""]))

(defn string-keys?
{:docstring "Predicate function to determine whether all keys provided for bins are strings."
{:doc "Predicate function to determine whether all keys provided for bins are strings."
:deprecated "3.1.0"}
[bin-names]
(every? string? bin-names))
Expand All @@ -39,7 +39,7 @@
(get reverse-boolean-replacements bin-value bin-value))

(defn v->array
"An optimized way to convert vectors into Java arrays of type `clazz`."
"An optimized way to convert [[java.util.Collection]]s into Java arrays of type `clazz`."
([clazz ^Collection v]
(.toArray v ^"[Ljava.lang.Object;" (make-array clazz 0)))
([clazz mapper-fn ^Collection v]
Expand Down

0 comments on commit 815b7bb

Please sign in to comment.