Use non-deprecated string->int method

This commit is contained in:
Wes Morgan 2022-03-18 15:47:05 -06:00
parent 538fc6f414
commit 350737a7e3
No known key found for this signature in database
GPG key ID: 5639E4CBFA17DC84

View file

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