mirror of
https://github.com/penpot/penpot.git
synced 2025-05-21 09:06:11 +02:00
Remove debug messages from rlocks ns.
This commit is contained in:
parent
398f08fac7
commit
8f935b4d60
1 changed files with 0 additions and 2 deletions
|
@ -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])))
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue