1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-22 18:28:37 +00:00

Simplify loops to copy (#19569)

- Simplify two loops into `copy` statements.
This commit is contained in:
Gusted
2022-04-30 23:53:56 +00:00
committed by GitHub
parent 1597e2da3e
commit c0a6309a5f
2 changed files with 3 additions and 6 deletions

View File

@@ -76,9 +76,7 @@ func GetLanguages(ctx *context.APIContext) {
}
resp := make(languageResponse, len(langs))
for i, v := range langs {
resp[i] = v
}
copy(resp, langs)
ctx.JSON(http.StatusOK, resp)
}