Commit 77c575d2 authored by Tim Cooper's avatar Tim Cooper Committed by Brad Fitzpatrick

net/http: remove unnecessary return

Change-Id: I93bc5de6bcb23c2639d7c2f3f5252fb6f09ca6e4
Reviewed-on: https://go-review.googlesource.com/126797Reviewed-by: default avatarBrad Fitzpatrick <bradfitz@golang.org>
parent 89d533e3
...@@ -3176,7 +3176,6 @@ func (h *timeoutHandler) ServeHTTP(w ResponseWriter, r *Request) { ...@@ -3176,7 +3176,6 @@ func (h *timeoutHandler) ServeHTTP(w ResponseWriter, r *Request) {
w.WriteHeader(StatusServiceUnavailable) w.WriteHeader(StatusServiceUnavailable)
io.WriteString(w, h.errorBody()) io.WriteString(w, h.errorBody())
tw.timedOut = true tw.timedOut = true
return
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment