1
0
mirror of https://github.com/go-gitea/gitea.git synced 2024-11-01 08:47:40 -04:00
gitea/routers/web/repo
Eng Zer Jun 13d5d2e711
Remove redundant len check around loop (#27464)
This pull request is a minor code cleanup.

From the Go specification (https://go.dev/ref/spec#For_range):

> "1. For a nil slice, the number of iterations is 0."
> "3. If the map is nil, the number of iterations is 0."

`len` returns 0 if the slice or map is nil
(https://pkg.go.dev/builtin#len). Therefore, checking `len(v) > 0`
before a loop is unnecessary.

---

At the time of writing this pull request, there wasn't a lint rule that
catches these issues. The closest I could find is
https://staticcheck.dev/docs/checks/#S103

Signed-off-by: Eng Zer Jun <engzerjun@gmail.com>
2023-10-06 14:49:37 +08:00
..
actions Even more db.DefaultContext refactor (#27352) 2023-10-03 10:30:41 +00:00
setting Even more db.DefaultContext refactor (#27352) 2023-10-03 10:30:41 +00:00
activity.go
attachment.go Even more db.DefaultContext refactor (#27352) 2023-10-03 10:30:41 +00:00
blame.go
branch.go
cherry_pick.go
commit.go Even more db.DefaultContext refactor (#27352) 2023-10-03 10:30:41 +00:00
compare.go When comparing with an non-exist repository, return 404 but 500 (#27437) 2023-10-04 13:59:03 +00:00
download.go
editor_test.go
editor.go
find.go
helper_test.go
helper.go
http_test.go
http.go
issue_content_history.go
issue_dependency.go
issue_label_test.go
issue_label.go Even more db.DefaultContext refactor (#27352) 2023-10-03 10:30:41 +00:00
issue_lock.go
issue_pin.go
issue_stopwatch.go
issue_test.go
issue_timetrack.go Even more db.DefaultContext refactor (#27352) 2023-10-03 10:30:41 +00:00
issue_watch.go
issue.go Remove redundant len check around loop (#27464) 2023-10-06 14:49:37 +08:00
main_test.go
middlewares.go
migrate.go
milestone.go
packages.go
patch.go
projects_test.go
projects.go
pull_review.go
pull.go Even more db.DefaultContext refactor (#27352) 2023-10-03 10:30:41 +00:00
release_test.go
release.go Improvements of releases list and tags list (#25859) 2023-09-28 13:21:47 +00:00
render.go
repo.go Even more db.DefaultContext refactor (#27352) 2023-10-03 10:30:41 +00:00
search.go
topic.go
treelist.go
view_test.go
view.go Document the line-number counting behavior (#27386) 2023-10-02 07:23:18 +00:00
wiki_test.go
wiki.go Move notification interface to services layer (#26915) 2023-09-05 18:37:47 +00:00