From 2fb4df6bdda734b8e8f25ab526f47027ddffa4e6 Mon Sep 17 00:00:00 2001 From: Oleksandr Yakushev Date: Fri, 27 Sep 2024 13:06:40 +0300 Subject: [PATCH] Remove misplaced type hint --- src/honey/sql/util.cljc | 1 - 1 file changed, 1 deletion(-) diff --git a/src/honey/sql/util.cljc b/src/honey/sql/util.cljc index 8572319..1e621ad 100644 --- a/src/honey/sql/util.cljc +++ b/src/honey/sql/util.cljc @@ -7,7 +7,6 @@ "More efficient implementation of `clojure.core/str` because it has more non-variadic arities. Optimization is Clojure-only, on other platforms it reverts back to `clojure.core/str`." - {:tag String} (^String [] "") (^String [^Object a] #?(:clj (if (nil? a) "" (.toString a))