mirror of https://github.com/status-im/timbre.git
Fix missing SimpleDateFormat type hint
This commit is contained in:
parent
b1a2e8c140
commit
0a765cb9ca
|
@ -424,7 +424,9 @@
|
||||||
(fn [opts]
|
(fn [opts]
|
||||||
(delay
|
(delay
|
||||||
(let [{:keys [pattern locale timezone]} opts]
|
(let [{:keys [pattern locale timezone]} opts]
|
||||||
(.format (enc/simple-date-format* pattern locale timezone)
|
(.format
|
||||||
|
^java.text.SimpleDateFormat
|
||||||
|
(enc/simple-date-format* pattern locale timezone)
|
||||||
(:instant data))))))]
|
(:instant data))))))]
|
||||||
|
|
||||||
(reduce-kv
|
(reduce-kv
|
||||||
|
|
Loading…
Reference in New Issue