Problem: return is unnecessary

Solution: remove return statement
This commit is contained in:
Peter Stuifzand 2021-11-20 21:38:47 +01:00
parent bfe52d0f2a
commit 7f16439dd7
Signed by: peter
GPG Key ID: 374322D56E5209E8

View File

@ -105,6 +105,4 @@ func (h *incomingHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
http.Error(w, fmt.Sprintf("could not update feed: %s (%s)", ct, err), http.StatusBadRequest) http.Error(w, fmt.Sprintf("could not update feed: %s (%s)", ct, err), http.StatusBadRequest)
return return
} }
return
} }