aboutsummaryrefslogtreecommitdiff
path: root/object/commit/append.go
diff options
context:
space:
mode:
Diffstat (limited to 'object/commit/append.go')
-rw-r--r--object/commit/append.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/object/commit/append.go b/object/commit/append.go
index 2bc00573..31031ed1 100644
--- a/object/commit/append.go
+++ b/object/commit/append.go
@@ -31,7 +31,6 @@ func (commit *Commit) AppendWithoutHeader(dst []byte) ([]byte, error) {
for _, h := range commit.ExtraHeaders {
// GIGO on empty keys and such.
-
dst = append(dst, []byte(h.Key)...)
dst = append(dst, byte(' '))
dst = append(dst, h.Value...)