From 78438c61fbdec400a9e2b71b38757f387fb90469 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 dc2fd29..9f95d55 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))