1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-22 18:28:37 +00:00

remove unused method and rename createcommentWithNoAction (#9367)

This commit is contained in:
Lunny Xiao
2019-12-16 11:54:24 +08:00
committed by GitHub
parent 67b316a954
commit 43ada65571
9 changed files with 17 additions and 89 deletions

View File

@@ -664,7 +664,7 @@ func (issue *Issue) changeStatus(e *xorm.Session, doer *User, isClosed bool) (*C
cmtType = CommentTypeReopen
}
return createCommentWithNoAction(e, &CreateCommentOptions{
return createComment(e, &CreateCommentOptions{
Type: cmtType,
Doer: doer,
Repo: issue.Repo,
@@ -724,7 +724,7 @@ func (issue *Issue) ChangeTitle(doer *User, oldTitle string) (err error) {
OldTitle: oldTitle,
NewTitle: issue.Title,
}
if _, err = createCommentWithNoAction(sess, opts); err != nil {
if _, err = createComment(sess, opts); err != nil {
return fmt.Errorf("createComment: %v", err)
}
if err = issue.addCrossReferences(sess, doer, true); err != nil {
@@ -752,7 +752,7 @@ func AddDeletePRBranchComment(doer *User, repo *Repository, issueID int64, branc
Issue: issue,
CommitSHA: branchName,
}
if _, err = createCommentWithNoAction(sess, opts); err != nil {
if _, err = createComment(sess, opts); err != nil {
return err
}
@@ -894,7 +894,7 @@ func newIssue(e *xorm.Session, doer *User, opts NewIssueOptions) (err error) {
OldMilestoneID: 0,
MilestoneID: opts.Issue.MilestoneID,
}
if _, err = createCommentWithNoAction(e, opts); err != nil {
if _, err = createComment(e, opts); err != nil {
return err
}
}