Skip to content

Commit

Permalink
Fix reflection warning
Browse files Browse the repository at this point in the history
  • Loading branch information
camsaul committed Apr 6, 2017
1 parent 0ad53f7 commit eed4e0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/metabase/driver/mongo/query_processor.clj
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@
(def ^:private fn-name->decoder
{:ISODate (fn [arg]
(DateTime. arg))
:ObjectId (fn [arg]
:ObjectId (fn [^String arg]
(ObjectId. arg))})

(defn- form->encoded-fn-name
Expand Down

0 comments on commit eed4e0b

Please sign in to comment.