Remove duplicate empty repo check in delete branch API (#32569)

Found while working on #32433.

This branch will never be executed because we have would have already
made the same check a couple lines above.
This commit is contained in:
Kemal Zebari 2024-11-19 17:05:06 -08:00 коммит произвёл GitHub
Родитель 69268ee19f
Коммит 355889dbc2
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
1 изменённых файлов: 0 добавлений и 5 удалений

Просмотреть файл

@ -133,11 +133,6 @@ func DeleteBranch(ctx *context.APIContext) {
branchName := ctx.PathParam("*")
if ctx.Repo.Repository.IsEmpty {
ctx.Error(http.StatusForbidden, "", "Git Repository is empty.")
return
}
// check whether branches of this repository has been synced
totalNumOfBranches, err := db.Count[git_model.Branch](ctx, git_model.FindBranchOptions{
RepoID: ctx.Repo.Repository.ID,