Use non-deprecated string->int method
This commit is contained in:
parent
538fc6f414
commit
350737a7e3
1 changed files with 1 additions and 1 deletions
|
|
@ -310,7 +310,7 @@
|
|||
(let [s (slurp f)]
|
||||
(when (str/ends-with? s "\n")
|
||||
(str/trim s))))]
|
||||
(Integer. s)
|
||||
(Integer/parseInt s)
|
||||
(recur)))))
|
||||
|
||||
(defn debug [& strs]
|
||||
|
|
|
|||
Loading…
Reference in a new issue