lint: "call" of static field
Signed-off-by: Sean Corfield <sean@corfield.org>
This commit is contained in:
parent
d644ec4a95
commit
e21a7ab590
2 changed files with 3 additions and 3 deletions
|
|
@ -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`
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue