Simplify loops to copy (#19569)
- Simplify two loops into `copy` statements.
This commit is contained in:
parent
1597e2da3e
commit
c0a6309a5f
2 changed files with 3 additions and 6 deletions
|
@ -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)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue