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
|
locales where the lower case version of a character is not a valid SQL
|
||||||
entity name (e.g., Turkish)."
|
entity name (e.g., Turkish)."
|
||||||
[^String s]
|
[^String s]
|
||||||
(.toLowerCase s (Locale/US)))
|
(.toLowerCase s Locale/US))
|
||||||
|
|
||||||
(defn as-lower-maps
|
(defn as-lower-maps
|
||||||
"Given a `ResultSet` and options, return a `RowBuilder` / `ResultSetBuilder`
|
"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
|
(ns next.jdbc.result-set
|
||||||
"An implementation of `ResultSet` handling functions.
|
"An implementation of `ResultSet` handling functions.
|
||||||
|
|
@ -90,7 +90,7 @@
|
||||||
locales where the lower case version of a character is not a valid SQL
|
locales where the lower case version of a character is not a valid SQL
|
||||||
entity name (e.g., Turkish)."
|
entity name (e.g., Turkish)."
|
||||||
[^String s]
|
[^String s]
|
||||||
(.toLowerCase s (Locale/US)))
|
(.toLowerCase s Locale/US))
|
||||||
|
|
||||||
(defn get-lower-column-names
|
(defn get-lower-column-names
|
||||||
"Given `ResultSetMetaData`, return a vector of lower-case column names, each
|
"Given `ResultSetMetaData`, return a vector of lower-case column names, each
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue