From 2625193a4820a89355ca1b8b7c910f0f4243baab Mon Sep 17 00:00:00 2001 From: Unknwon Date: Mon, 15 Aug 2016 22:20:55 -0700 Subject: models/repo_editor: improve code quality --- models/issue.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'models/issue.go') diff --git a/models/issue.go b/models/issue.go index bd236c7a80..9b9dedb693 100644 --- a/models/issue.go +++ b/models/issue.go @@ -587,7 +587,7 @@ type NewIssueOptions struct { IsPull bool } -func newIssue(e *xorm.Session, opts *NewIssueOptions) (err error) { +func newIssue(e *xorm.Session, opts NewIssueOptions) (err error) { opts.Issue.Title = strings.TrimSpace(opts.Issue.Title) opts.Issue.Index = opts.Repo.NextIssueIndex() @@ -669,7 +669,7 @@ func NewIssue(repo *Repository, issue *Issue, labelIDs []int64, uuids []string) return err } - if err = newIssue(sess, &NewIssueOptions{ + if err = newIssue(sess, NewIssueOptions{ Repo: repo, Issue: issue, LableIDs: labelIDs, -- cgit v1.2.3