diff options
author | Christian Muehlhaeuser <muesli@gmail.com> | 2019-07-23 20:50:39 +0200 |
---|---|---|
committer | zeripath <art27@cantab.net> | 2019-07-23 19:50:39 +0100 |
commit | 54d96c79b5b9f3d5d47aed59729ae779968fbecb (patch) | |
tree | 3d74fa2aecf3a9c5a23a1ec0c7e66fca270216aa /models/action.go | |
parent | 2f75766532fbf30883c05e93ef01c19268216c45 (diff) | |
download | gitea-54d96c79b5b9f3d5d47aed59729ae779968fbecb.tar.gz gitea-54d96c79b5b9f3d5d47aed59729ae779968fbecb.zip |
Removed unnecessary conversions (#7557)
No need to convert to the same type.
Diffstat (limited to 'models/action.go')
-rw-r--r-- | models/action.go | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/models/action.go b/models/action.go index a092f564bf..c819c286e2 100644 --- a/models/action.go +++ b/models/action.go @@ -500,7 +500,7 @@ func getIssueFromRef(repo *Repository, ref string) (*Issue, error) { return nil, nil } - issue, err := GetIssueByIndex(refRepo.ID, int64(issueIndex)) + issue, err := GetIssueByIndex(refRepo.ID, issueIndex) if err != nil { if IsErrIssueNotExist(err) { return nil, nil @@ -565,7 +565,7 @@ func UpdateIssuesCommit(doer *User, repo *Repository, commits []*PushCommit, bra // issue is from another repo if len(m[1]) > 0 && len(m[2]) > 0 { - refRepo, err = GetRepositoryFromMatch(string(m[1]), string(m[2])) + refRepo, err = GetRepositoryFromMatch(m[1], m[2]) if err != nil { continue } @@ -602,7 +602,7 @@ func UpdateIssuesCommit(doer *User, repo *Repository, commits []*PushCommit, bra // issue is from another repo if len(m[1]) > 0 && len(m[2]) > 0 { - refRepo, err = GetRepositoryFromMatch(string(m[1]), string(m[2])) + refRepo, err = GetRepositoryFromMatch(m[1], m[2]) if err != nil { continue } @@ -631,7 +631,7 @@ func UpdateIssuesCommit(doer *User, repo *Repository, commits []*PushCommit, bra // issue is from another repo if len(m[1]) > 0 && len(m[2]) > 0 { - refRepo, err = GetRepositoryFromMatch(string(m[1]), string(m[2])) + refRepo, err = GetRepositoryFromMatch(m[1], m[2]) if err != nil { continue } |