Skip to content

Commit b14afb7

Browse files
committed
Whitespace.
1 parent e8d1b82 commit b14afb7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/async/http/protocol/http1/server.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,9 @@ def each(task: Task.current)
6060
# If a response was generated, send it:
6161
if response
6262
trailer = response.headers.trailer!
63-
63+
6464
write_response(@version, response.status, response.headers)
65-
65+
6666
# Some operations in this method are long running, that is, it's expected that `body.call(stream)` could literally run indefinitely. In order to facilitate garbage collection, we want to nullify as many local variables before calling the streaming body. This ensures that the garbage collection can clean up as much state as possible during the long running operation, so we don't retain objects that are no longer needed.
6767

6868
if body and protocol = response.protocol
@@ -89,7 +89,7 @@ def each(task: Task.current)
8989

9090
write_body(version, body, head, trailer)
9191
end
92-
92+
9393
# We are done with the body, you shouldn't need to call close on it:
9494
body = nil
9595
else

0 commit comments

Comments
 (0)