From 9c4601bdf8369ed72944085e3952111cf4aeea11 Mon Sep 17 00:00:00 2001 From: 6543 <6543@obermui.de> Date: Fri, 9 Apr 2021 09:40:34 +0200 Subject: Code Formats, Nits & Unused Func/Var deletions (#15286) * _ to unused func options * rm useless brakets * rm trifial non used models functions * rm dead code * rm dead global vars * fix routers/api/v1/repo/issue.go * dont overload import module --- models/issue_label.go | 13 ------------- 1 file changed, 13 deletions(-) (limited to 'models/issue_label.go') diff --git a/models/issue_label.go b/models/issue_label.go index 4f082b8a6e..d1ff469236 100644 --- a/models/issue_label.go +++ b/models/issue_label.go @@ -510,19 +510,6 @@ func GetLabelIDsInOrgByNames(orgID int64, labelNames []string) ([]int64, error) Find(&labelIDs) } -// GetLabelIDsInOrgsByNames returns a list of labelIDs by names in one of the given -// organization. -// it silently ignores label names that do not belong to the organization. -func GetLabelIDsInOrgsByNames(orgIDs []int64, labelNames []string) ([]int64, error) { - labelIDs := make([]int64, 0, len(labelNames)) - return labelIDs, x.Table("label"). - In("org_id", orgIDs). - In("name", labelNames). - Asc("name"). - Cols("id"). - Find(&labelIDs) -} - // GetLabelInOrgByID returns a label by ID in given organization. func GetLabelInOrgByID(orgID, labelID int64) (*Label, error) { return getLabelInOrgByID(x, orgID, labelID) -- cgit v1.2.3