lint: "call" of static field

Signed-off-by: Sean Corfield <sean@corfield.org>
This commit is contained in:
Sean Corfield 2024-02-12 14:07:11 -08:00
parent d644ec4a95
commit e21a7ab590
No known key found for this signature in database
2 changed files with 3 additions and 3 deletions

View file

@ -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`

View file

@ -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.
@ -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