зеркало из https://github.com/golang/tools.git
style suggestions
This commit is contained in:
Родитель
deda4f7058
Коммит
9c1eeb9faf
|
@ -225,13 +225,12 @@ func listHandler(w http.ResponseWriter, r *http.Request) {
|
||||||
if r.URL.Query().Get("mode") == "json" {
|
if r.URL.Query().Get("mode") == "json" {
|
||||||
w.Header().Set("Content-Type", "application/json")
|
w.Header().Set("Content-Type", "application/json")
|
||||||
|
|
||||||
e := json.NewEncoder(w)
|
enc := json.NewEncoder(w)
|
||||||
e.SetIndent("", " ")
|
enc.SetIndent("", " ")
|
||||||
|
|
||||||
if err := e.Encode(d.Stable); err != nil {
|
if err := enc.Encode(d.Stable); err != nil {
|
||||||
log.Errorf(c, "failed rendering JSON for releases: %v", err)
|
log.Errorf(c, "failed rendering JSON for releases: %v", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Загрузка…
Ссылка в новой задаче