Remove debug messages from rlocks ns.

This commit is contained in:
Andrey Antukh 2016-08-10 20:05:01 +03:00
parent 398f08fac7
commit 8f935b4d60
No known key found for this signature in database
GPG key ID: 4DFEBCB8316A8B95

View file

@ -18,7 +18,6 @@
(defn acquire! (defn acquire!
([type] ([type]
(when (= @lock ::none) (when (= @lock ::none)
(println "acquire!" type)
(reset! lock type) (reset! lock type)
(rx/push! stream [type nil]))) (rx/push! stream [type nil])))
([type payload] ([type payload]
@ -29,7 +28,6 @@
(defn release! (defn release!
[type] [type]
(when (= @lock type) (when (= @lock type)
(println "release!" type)
(reset! lock ::none) (reset! lock ::none)
(rx/push! stream [::none nil]))) (rx/push! stream [::none nil])))