From 5f55edea84e7244bd8f3aef559acaf445d57ba71 Mon Sep 17 00:00:00 2001 From: Jonas Franz Date: Sun, 13 May 2018 22:43:02 +0200 Subject: [PATCH] gofmt Signed-off-by: Jonas Franz --- models/issue_comment.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/models/issue_comment.go b/models/issue_comment.go index a7008780bb..9b5b3ed45b 100644 --- a/models/issue_comment.go +++ b/models/issue_comment.go @@ -387,8 +387,8 @@ func createComment(e *xorm.Session, opts *CreateCommentOptions) (_ *Comment, err Content: opts.Content, OldTitle: opts.OldTitle, NewTitle: opts.NewTitle, - TreePath: opts.TreePath, - ReviewID: opts.ReviewID, + TreePath: opts.TreePath, + ReviewID: opts.ReviewID, } if _, err = e.Insert(comment); err != nil { return nil, err @@ -607,8 +607,8 @@ type CreateCommentOptions struct { CommitID int64 CommitSHA string LineNum int64 - TreePath string - ReviewID int64 + TreePath string + ReviewID int64 Content string Attachments []string // UUIDs of attachments }