diff options
author | Runxi Yu <me@runxiyu.org> | 2025-02-14 09:21:36 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2025-02-14 09:21:36 +0800 |
commit | 558b32690c9482928bbb05bb500f1ea1df0088c9 (patch) | |
tree | dd7e7a40c89bd1cdcbd8afb13f8b6268e64b9bfe /http_handle_repo_index.go | |
parent | README.md: Justify the subgroup syntax (diff) | |
download | forge-558b32690c9482928bbb05bb500f1ea1df0088c9.tar.gz forge-558b32690c9482928bbb05bb500f1ea1df0088c9.tar.zst forge-558b32690c9482928bbb05bb500f1ea1df0088c9.zip |
http_handle_*.go: Remove redundant return statements
Diffstat (limited to 'http_handle_repo_index.go')
-rw-r--r-- | http_handle_repo_index.go | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/http_handle_repo_index.go b/http_handle_repo_index.go index 890c5c7..4eb2c97 100644 --- a/http_handle_repo_index.go +++ b/http_handle_repo_index.go @@ -41,5 +41,4 @@ func handle_repo_index(w http.ResponseWriter, r *http.Request, params map[string params["clone_url"] = generate_ssh_remote_url(group_name, repo_name) render_template(w, "repo_index", params) - return } |