aboutsummaryrefslogtreecommitdiffstats
path: root/bug/op_label_change.go
diff options
context:
space:
mode:
Diffstat (limited to 'bug/op_label_change.go')
-rw-r--r--bug/op_label_change.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/bug/op_label_change.go b/bug/op_label_change.go
index b025be81..006afd88 100644
--- a/bug/op_label_change.go
+++ b/bug/op_label_change.go
@@ -12,13 +12,13 @@ var _ Operation = &LabelChangeOperation{}
// LabelChangeOperation define a Bug operation to add or remove labels
type LabelChangeOperation struct {
- *OpBase
+ OpBase
Added []Label `json:"added"`
Removed []Label `json:"removed"`
}
func (op *LabelChangeOperation) base() *OpBase {
- return op.OpBase
+ return &op.OpBase
}
func (op *LabelChangeOperation) Hash() (git.Hash, error) {