aboutsummaryrefslogtreecommitdiffstats
path: root/bug/op_set_title.go
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2018-09-29 11:28:18 +0200
committerMichael Muré <batolettre@gmail.com>2018-09-29 11:28:18 +0200
commit41e61a67b63e4d6c517005cf6f427115a664bdb5 (patch)
tree889066eab537b19ad41196b47d803a9d5a3f031e /bug/op_set_title.go
parent794d014fae9a78bd8664e6628a20902bd6dc767a (diff)
downloadgit-bug-41e61a67b63e4d6c517005cf6f427115a664bdb5.tar.gz
bug: apply an operation with a pointer to the snapshot
Diffstat (limited to 'bug/op_set_title.go')
-rw-r--r--bug/op_set_title.go4
1 files changed, 1 insertions, 3 deletions
diff --git a/bug/op_set_title.go b/bug/op_set_title.go
index a4912143..6049ebd0 100644
--- a/bug/op_set_title.go
+++ b/bug/op_set_title.go
@@ -26,10 +26,8 @@ func (op SetTitleOperation) Hash() (git.Hash, error) {
return hashOperation(op)
}
-func (op SetTitleOperation) Apply(snapshot Snapshot) Snapshot {
+func (op SetTitleOperation) Apply(snapshot *Snapshot) {
snapshot.Title = op.Title
-
- return snapshot
}
func (op SetTitleOperation) Validate() error {