aboutsummaryrefslogtreecommitdiffstats
path: root/bug/op_add_comment.go
diff options
context:
space:
mode:
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) {