From bb5ccb203e14546e3b42105be63b82338835197e Mon Sep 17 00:00:00 2001 From: janos erdos Date: Thu, 16 Nov 2023 23:58:04 +0100 Subject: [PATCH] type hints --- src/stencil/model/common.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stencil/model/common.clj b/src/stencil/model/common.clj index 94ac3026..3d3c1377 100644 --- a/src/stencil/model/common.clj +++ b/src/stencil/model/common.clj @@ -23,5 +23,5 @@ nil))) -(defn unix-path [^File f] +(defn unix-path ^String [^File f] (some-> f .toPath FileHelper/toUnixSeparatedString))