summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/boot.clj4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/boot.clj b/src/boot.clj
index ed86b3d0..996a5255 100644
--- a/src/boot.clj
+++ b/src/boot.clj
@@ -1223,7 +1223,7 @@ not-every? (comp not every?))
(let [latch (new java.util.concurrent.CountDownLatch (count agents))
count-down (fn [agent] (. latch (countDown)) agent)]
(doseq agent agents
- (! agent count-down))
+ (send agent count-down))
(. latch (await))))
(defn await-for
@@ -1235,7 +1235,7 @@ not-every? (comp not every?))
(let [latch (new java.util.concurrent.CountDownLatch (count agents))
count-down (fn [agent] (. latch (countDown)) agent)]
(doseq agent agents
- (! agent count-down))
+ (send agent count-down))
(. latch (await timeout-ms (. java.util.concurrent.TimeUnit MILLISECONDS)))))
(defmacro dotimes