diff options
Diffstat (limited to 'bug/op_edit_comment.go')
-rw-r--r-- | bug/op_edit_comment.go | 4 |
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) { |