0
0
Fork 0
mirror of https://github.com/go-gitea/gitea synced 2024-12-27 09:44:27 +01: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.go
editor_test.go
find.go
helper.go
helper_test.go
http.go
http_test.go
issue.go Remove redundant len check around loop (#27464) 2023-10-06 14:49:37 +08:00
issue_content_history.go
issue_dependency.go
issue_label.go Even more db.DefaultContext refactor (#27352) 2023-10-03 10:30:41 +00:00
issue_label_test.go
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
main_test.go
middlewares.go
migrate.go
milestone.go
packages.go
patch.go
projects.go
projects_test.go
pull.go Even more db.DefaultContext refactor (#27352) 2023-10-03 10:30:41 +00:00
pull_review.go
release.go
release_test.go
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.go Document the line-number counting behavior (#27386) 2023-10-02 07:23:18 +00:00
view_test.go
wiki.go
wiki_test.go