summaryrefslogtreecommitdiffstats
path: root/models/issue_xref.go
diff options
context:
space:
mode:
authorLunny Xiao <xiaolunwen@gmail.com>2019-12-16 11:54:24 +0800
committerGitHub <noreply@github.com>2019-12-16 11:54:24 +0800
commit43ada6557135919b354d7384c4be699b539b10cb (patch)
tree676627d51d8822783393ba162b6fefd46742c427 /models/issue_xref.go
parent67b316a954b161cac27e16b6455837881919dd94 (diff)
downloadgitea-43ada6557135919b354d7384c4be699b539b10cb.tar.gz
gitea-43ada6557135919b354d7384c4be699b539b10cb.zip
remove unused method and rename createcommentWithNoAction (#9367)
Diffstat (limited to 'models/issue_xref.go')
-rw-r--r--models/issue_xref.go5
1 files changed, 1 insertions, 4 deletions
diff --git a/models/issue_xref.go b/models/issue_xref.go
index 5cf8f58a0f..104691fe93 100644
--- a/models/issue_xref.go
+++ b/models/issue_xref.go
@@ -127,13 +127,10 @@ func (issue *Issue) createCrossReferences(e *xorm.Session, ctx *crossReferencesC
RefAction: xref.Action,
RefIsPull: ctx.OrigIssue.IsPull,
}
- comment, err := createCommentWithNoAction(e, opts)
+ _, err := createComment(e, opts)
if err != nil {
return err
}
- if err = sendCreateCommentAction(e, opts, comment); err != nil {
- return err
- }
}
return nil
}