Don't refer to clojure.core functions monger.collection and monger.core replace

This commit is contained in:
Michael S. Klishin 2011-09-09 06:57:01 +04:00
parent 668373c894
commit 1a9e0715cd
2 changed files with 3 additions and 2 deletions

View file

@ -8,6 +8,7 @@
;; You must not remove this notice, or any other, from this software. ;; You must not remove this notice, or any other, from this software.
(ns monger.collection (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)) (:import (com.mongodb Mongo DB DBCollection WriteResult DBObject WriteConcern DBCursor) (java.util List Map) (clojure.lang IPersistentMap ISeq))
(:require [monger core result]) (:require [monger core result])
(:use [monger.convertion])) (:use [monger.convertion]))

View file

@ -8,8 +8,8 @@
;; You must not remove this notice, or any other, from this software. ;; You must not remove this notice, or any other, from this software.
(ns monger.core (ns monger.core
(:import (com.mongodb Mongo DB WriteConcern)) (:refer-clojure :exclude [count])
) (:import (com.mongodb Mongo DB WriteConcern)))
;; ;;
;; Defaults ;; Defaults