From 350737a7e31ce5c57d0f26c2faf55d4ada0e4e9e Mon Sep 17 00:00:00 2001 From: Wes Morgan Date: Fri, 18 Mar 2022 15:47:05 -0600 Subject: [PATCH] Use non-deprecated string->int method --- src/babashka/pods/impl.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/babashka/pods/impl.clj b/src/babashka/pods/impl.clj index 1d5ad40..05da9a1 100644 --- a/src/babashka/pods/impl.clj +++ b/src/babashka/pods/impl.clj @@ -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]