aboutsummaryrefslogtreecommitdiffstats
path: root/bug/op_add_comment.go
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2018-10-01 11:37:17 +0200
committerMichael Muré <batolettre@gmail.com>2018-10-01 11:37:17 +0200
commit3402230a5537d95ce26bf7fa0d33330823a59f08 (patch)
treeabdc5a871e995446da40406754adc11c4e3befe7 /bug/op_add_comment.go
parent7f86898ef9a8f9e866835ece3c9824a8edc58036 (diff)
downloadgit-bug-3402230a5537d95ce26bf7fa0d33330823a59f08.tar.gz
bug: use a value embedding for OpBase
Diffstat (limited to 'bug/op_add_comment.go')
-rw-r--r--bug/op_add_comment.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/bug/op_add_comment.go b/bug/op_add_comment.go
index 156a8f71..3b2c2b76 100644
--- a/bug/op_add_comment.go
+++ b/bug/op_add_comment.go
@@ -11,14 +11,14 @@ var _ Operation = &AddCommentOperation{}
// AddCommentOperation will add a new comment in the bug
type AddCommentOperation struct {
- *OpBase
+ OpBase
Message string `json:"message"`
// TODO: change for a map[string]util.hash to store the filename ?
Files []git.Hash `json:"files"`
}
func (op *AddCommentOperation) base() *OpBase {
- return op.OpBase
+ return &op.OpBase
}
func (op *AddCommentOperation) Hash() (git.Hash, error) {