Skip to content

Commit

Permalink
fix invocation of PQ
Browse files Browse the repository at this point in the history
  • Loading branch information
puredanger committed Jul 22, 2024
1 parent 09db01b commit ea5fdd6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/clojure/clojure/tools/deps.clj
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@
:ppath use-path
:child-pred child-pred})]
(loop [pendq nil ;; a resolved child-lookup thunk to look at first
q (into (PersistentQueue/EMPTY) (map vector deps)) ;; queue of nodes or child-lookups
q (into PersistentQueue/EMPTY (map vector deps)) ;; queue of nodes or child-lookups
version-map nil ;; track all seen versions of libs and which version is selected
exclusions nil ;; tracks exclusions marked in the tree
cut nil ;; tracks cuts made of child nodes based on exclusions
Expand Down

0 comments on commit ea5fdd6

Please sign in to comment.