From 5845eda6b802dbaa8e46c49e03929e1df0efd114 Mon Sep 17 00:00:00 2001 From: gered Date: Fri, 4 Jul 2014 19:10:12 -0400 Subject: [PATCH] doesnt seem to be much need for this anymore --- src/clj_hl7_fhir/core.clj | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/clj_hl7_fhir/core.clj b/src/clj_hl7_fhir/core.clj index 00ac48a..2f98106 100644 --- a/src/clj_hl7_fhir/core.clj +++ b/src/clj_hl7_fhir/core.clj @@ -5,13 +5,11 @@ (:use [camel-snake-kebab] [clj-hl7-fhir.util])) -(def ^:private base-params {:_format "json"}) - (defn- ->fhir-resource-name [x] (name (->CamelCase x))) (defn- fhir-get-request [base-url resource-url & [params]] - (let [query (map->query-string (merge base-params params))] + (let [query (map->query-string params)] (http-get-json (build-url base-url resource-url query)))) (defn- ->search-param-name [parameter & [modifier]]