From 8b237db38256dff9fbd2119988857058cdf6a699 Mon Sep 17 00:00:00 2001 From: Michael Klishin Date: Sat, 10 May 2014 17:04:38 -0400 Subject: [PATCH] Cosmetics --- src/clojure/monger/core.clj | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/clojure/monger/core.clj b/src/clojure/monger/core.clj index 74c264e..d467768 100644 --- a/src/clojure/monger/core.clj +++ b/src/clojure/monger/core.clj @@ -179,13 +179,13 @@ For commonly used commands (distinct, count, map/reduce, etc), use monger.command and monger.collection functions such as /distinct, /count, /drop, /dropIndexes, and /mapReduce respectively." - ([^DB database ^Map cmd] - (.command ^DB database ^DBObject (to-db-object cmd)))) + [^DB database ^Map cmd] + (.command ^DB database ^DBObject (to-db-object cmd))) (defn ^com.mongodb.CommandResult raw-command "Like monger.core/command but accepts DBObjects" - ([^DB database ^DBObject cmd] - (.command database cmd))) + [^DB database ^DBObject cmd] + (.command database cmd)) (defprotocol Countable (count [this] "Returns size of the object"))