From 84e76c1e30fb1d3b96b93f32cc5b4d69eca8e881 Mon Sep 17 00:00:00 2001 From: Michael Klishin Date: Sun, 2 Mar 2014 14:35:01 +0400 Subject: [PATCH] Cosmetics --- src/clojure/monger/cursor.clj | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/clojure/monger/cursor.clj b/src/clojure/monger/cursor.clj index 8a083b9..ed65233 100644 --- a/src/clojure/monger/cursor.clj +++ b/src/clojure/monger/cursor.clj @@ -20,8 +20,10 @@ (defn ^DBCursor make-db-cursor "initializes new db-cursor." - ([^String collection] (make-db-cursor collection {} {})) - ([^String collection ^Map ref] (make-db-cursor collection ref {})) + ([^String collection] + (make-db-cursor collection {} {})) + ([^String collection ^Map ref] + (make-db-cursor collection ref {})) ([^String collection ^Map ref fields] (.find (.getCollection monger.core/*mongodb-database* (name collection))