diff options
author | Stuart Sierra <mail@stuartsierra.com> | 2009-08-18 12:59:19 -0400 |
---|---|---|
committer | Stuart Sierra <mail@stuartsierra.com> | 2009-08-18 12:59:19 -0400 |
commit | 9f3bc3b359a977e978a6ad0c8cd0481b5765f511 (patch) | |
tree | 813df5c5efb29fc131d0f2306d66d989d06bc9b7 | |
parent | cb32dc51ee01ee76f88e8cd61498e9bfd70e8c2f (diff) |
http/agent.clj: fixed misplaced parenthesis
-rw-r--r-- | src/clojure/contrib/http/agent.clj | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/src/clojure/contrib/http/agent.clj b/src/clojure/contrib/http/agent.clj index 2121b9db..4ade2b91 100644 --- a/src/clojure/contrib/http/agent.clj +++ b/src/clojure/contrib/http/agent.clj @@ -96,7 +96,7 @@ (defn- open-response "Agent action that opens the response body stream on the HTTP - request; this will block until the response stream is available." + request; this will block until the response stream is available." ; [state options] (let [#^HttpURLConnection conn (::connection state)] (assoc state @@ -153,13 +153,13 @@ ;;; CONSTRUCTOR (def *http-agent-defaults* - {:method "GET" - :headers {} - :body nil - :connect-timeout 0 - :read-timeout 0 - :follow-redirects true - :handler buffer-bytes}) + {:method "GET" + :headers {} + :body nil + :connect-timeout 0 + :read-timeout 0 + :follow-redirects true + :handler buffer-bytes}) (defn http-agent "Creates (and immediately returns) an Agent representing an HTTP @@ -262,7 +262,7 @@ ([http-agnt] (string http-agnt (or (.getContentEncoding #^HttpURLConnection (::connection @http-agnt)) - duck/*default-encoding*))) + duck/*default-encoding*))) ([http-agnt #^String encoding] (.toString (get-byte-buffer http-agnt) encoding))) @@ -324,7 +324,7 @@ (reduce (fn [m [#^String k v]] (assoc m (when k (keyword (.toLowerCase k))) (last v))) {} (.getHeaderFields - #^HttpURLConnection (::connection @http-agnt))) + #^HttpURLConnection (::connection @http-agnt)))) (defn headers-seq "Returns the HTTP response headers in order as a sequence of @@ -337,7 +337,7 @@ (when-let [value (.getHeaderField conn i)] (cons [(.getHeaderFieldKey conn i) value] (thisfn (inc i)))))] - (lazy-seq (f 0))))) + (lazy-seq (f 0)))) ;;; RESPONSE STATUS CODE ACCESSORS |