From 8f935b4d60776b280e32d63da3aea4109b73912c Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Wed, 10 Aug 2016 20:05:01 +0300 Subject: [PATCH] Remove debug messages from rlocks ns. --- src/uxbox/main/ui/workspace/rlocks.cljs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/uxbox/main/ui/workspace/rlocks.cljs b/src/uxbox/main/ui/workspace/rlocks.cljs index 531cba5b4..c180c8712 100644 --- a/src/uxbox/main/ui/workspace/rlocks.cljs +++ b/src/uxbox/main/ui/workspace/rlocks.cljs @@ -18,7 +18,6 @@ (defn acquire! ([type] (when (= @lock ::none) - (println "acquire!" type) (reset! lock type) (rx/push! stream [type nil]))) ([type payload] @@ -29,7 +28,6 @@ (defn release! [type] (when (= @lock type) - (println "release!" type) (reset! lock ::none) (rx/push! stream [::none nil])))