diff options
Diffstat (limited to 'bug/op_create.go')
-rw-r--r-- | bug/op_create.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bug/op_create.go b/bug/op_create.go index 200da4ae..2ac85ee1 100644 --- a/bug/op_create.go +++ b/bug/op_create.go @@ -12,14 +12,14 @@ var _ Operation = &CreateOperation{} // CreateOperation define the initial creation of a bug type CreateOperation struct { - *OpBase + OpBase Title string `json:"title"` Message string `json:"message"` Files []git.Hash `json:"files"` } func (op *CreateOperation) base() *OpBase { - return op.OpBase + return &op.OpBase } func (op *CreateOperation) Hash() (git.Hash, error) { |