diff --git a/src/cryogen_core/classpath_able_io/fs.clj b/src/cryogen_core/classpath_able_io/fs.clj index a546ce9..63cf90b 100644 --- a/src/cryogen_core/classpath_able_io/fs.clj +++ b/src/cryogen_core/classpath_able_io/fs.clj @@ -30,13 +30,10 @@ (defn path-if-exists [& path-elements] (let [path-from-fs - (Paths/get - (URI. (str "file://" - (apply absolut-path - ;TODO: sollte hier nicht auch stehen: - ;(apply this/virtual-path-from-elements path-elements) - path-elements - ))))] + (apply absolut-path + ;TODO: sollte hier nicht auch stehen: + ;(apply this/virtual-path-from-elements path-elements) + path-elements)] (when (Files/exists path-from-fs follow-link-option) path-from-fs)))