diff --git a/src/monger/collection.clj b/src/monger/collection.clj index 4c86001..b42d88f 100644 --- a/src/monger/collection.clj +++ b/src/monger/collection.clj @@ -8,6 +8,7 @@ ;; You must not remove this notice, or any other, from this software. (ns monger.collection + (:refer-clojure :exclude [find remove count]) (:import (com.mongodb Mongo DB DBCollection WriteResult DBObject WriteConcern DBCursor) (java.util List Map) (clojure.lang IPersistentMap ISeq)) (:require [monger core result]) (:use [monger.convertion])) diff --git a/src/monger/core.clj b/src/monger/core.clj index a508819..7c1f50c 100644 --- a/src/monger/core.clj +++ b/src/monger/core.clj @@ -8,8 +8,8 @@ ;; You must not remove this notice, or any other, from this software. (ns monger.core - (:import (com.mongodb Mongo DB WriteConcern)) - ) + (:refer-clojure :exclude [count]) + (:import (com.mongodb Mongo DB WriteConcern))) ;; ;; Defaults