Skip to content

Commit 82f394c

Browse files
committed
Put do on separate line
1 parent 6307bba commit 82f394c

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/aleph/http/common.clj

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -167,8 +167,9 @@
167167
(cond
168168
(map? ssl-context)
169169
(if-let [apc ^ApplicationProtocolConfig (:application-protocol-config ssl-context)]
170-
(do (assert-consistent-alpn-config! (.supportedProtocols apc) desired-http-versions)
171-
ssl-context)
170+
(do
171+
(assert-consistent-alpn-config! (.supportedProtocols apc) desired-http-versions)
172+
ssl-context)
172173
(assoc ssl-context
173174
:application-protocol-config
174175
(netty/application-protocol-config desired-http-versions)))

0 commit comments

Comments
 (0)