Skip to content

Commit

Permalink
lint: "call" of static field
Browse files Browse the repository at this point in the history
Signed-off-by: Sean Corfield <sean@corfield.org>
  • Loading branch information
seancorfield committed Feb 12, 2024
1 parent d644ec4 commit e21a7ab
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/next/jdbc/optional.clj
Expand Up @@ -76,7 +76,7 @@
locales where the lower case version of a character is not a valid SQL
entity name (e.g., Turkish)."
[^String s]
(.toLowerCase s (Locale/US)))
(.toLowerCase s Locale/US))

(defn as-lower-maps
"Given a `ResultSet` and options, return a `RowBuilder` / `ResultSetBuilder`
Expand Down
4 changes: 2 additions & 2 deletions src/next/jdbc/result_set.clj
@@ -1,4 +1,4 @@
;; copyright (c) 2018-2021 Sean Corfield, all rights reserved
;; copyright (c) 2018-2024 Sean Corfield, all rights reserved

(ns next.jdbc.result-set
"An implementation of `ResultSet` handling functions.
Expand Down Expand Up @@ -90,7 +90,7 @@
locales where the lower case version of a character is not a valid SQL
entity name (e.g., Turkish)."
[^String s]
(.toLowerCase s (Locale/US)))
(.toLowerCase s Locale/US))

(defn get-lower-column-names
"Given `ResultSetMetaData`, return a vector of lower-case column names, each
Expand Down

0 comments on commit e21a7ab

Please sign in to comment.