Skip to content

Commit

Permalink
fix linting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
puredanger committed Apr 29, 2024
1 parent 883a9c7 commit 2247f81
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/clojure/clojure/tools/build/util/file.clj
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
:or {dirs false
collect (constantly true)}}]
(when (.exists root)
(loop [queue (conj (PersistentQueue/EMPTY) root)
(loop [queue (conj PersistentQueue/EMPTY root)
collected []]
(let [^File file (peek queue)]
(if file
Expand Down Expand Up @@ -80,7 +80,7 @@
(when (.exists src-dir)
(let [root (.toPath src-dir)
target (.toPath target-dir)]
(loop [queue (conj (PersistentQueue/EMPTY) src-dir)]
(loop [queue (conj PersistentQueue/EMPTY src-dir)]
(let [^File file (peek queue)]
(when file
(let [path (.toPath file)
Expand Down

0 comments on commit 2247f81

Please sign in to comment.