aboutsummaryrefslogtreecommitdiffstats
path: root/bug/op_edit_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_edit_comment.go
parent7f86898ef9a8f9e866835ece3c9824a8edc58036 (diff)
downloadgit-bug-3402230a5537d95ce26bf7fa0d33330823a59f08.tar.gz
bug: use a value embedding for OpBase
Diffstat (limited to 'bug/op_edit_comment.go')
-rw-r--r--bug/op_edit_comment.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/bug/op_edit_comment.go b/bug/op_edit_comment.go
index 78976af7..ec767ed4 100644
--- a/bug/op_edit_comment.go
+++ b/bug/op_edit_comment.go
@@ -11,14 +11,14 @@ var _ Operation = &EditCommentOperation{}
// EditCommentOperation will change a comment in the bug
type EditCommentOperation struct {
- *OpBase
+ OpBase
Target git.Hash `json:"target"`
Message string `json:"message"`
Files []git.Hash `json:"files"`
}
func (op *EditCommentOperation) base() *OpBase {
- return op.OpBase
+ return &op.OpBase
}
func (op *EditCommentOperation) Hash() (git.Hash, error) {