Skip to content

Commit f4233b3

Browse files
committed
Fix whitespace errors in r.h.httpcore.
1 parent e1a79eb commit f4233b3

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

ring-httpcore-adapter/src/ring/adapter/httpcore.clj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@
9595
(StringEntity. body)
9696
(seq? body)
9797
(EntityTemplate.
98-
(reify ContentProducer
98+
(reify ContentProducer
9999
(writeTo [this ^OutputStream s]
100100
(let [w (if charset
101101
(OutputStreamWriter. s ^String charset)
@@ -119,7 +119,7 @@
119119
"Returns an Handler implementation for the given Ring handler.
120120
The HttpContext must contains a map associated to \"ring.request-prototype\"."
121121
[handler]
122-
(reify HttpRequestHandler
122+
(reify HttpRequestHandler
123123
(handle [this request response ^HttpContext context]
124124
(let [req (build-req-map request
125125
(.getAttribute context "ring.request-prototype"))
@@ -167,7 +167,7 @@
167167
(defn run-httpcore
168168
"Serve the given handler according to the options.
169169
Options:
170-
:port
170+
:port
171171
:server-name - For old HTTP/1.0 clients
172172
:server-port - For old HTTP/1.0 clients, when public facing port is different
173173
from :port
@@ -176,7 +176,7 @@
176176
[handler {:keys [port server-name server-port execute]}]
177177
(let [execute (or execute (partial executor-execute
178178
(Executors/newCachedThreadPool
179-
(reify ThreadFactory
179+
(reify ThreadFactory
180180
(newThread [this r]
181181
(doto (Thread. ^Runnable r)
182182
(.setDaemon true)))))))

0 commit comments

Comments
 (0)