aboutsummaryrefslogtreecommitdiffstats
path: root/plumbing/protocol/packp/updreq_decode.go
diff options
context:
space:
mode:
authorMáximo Cuadros <mcuadros@gmail.com>2019-07-29 17:46:48 +0200
committerGitHub <noreply@github.com>2019-07-29 17:46:48 +0200
commitd6c4b113c17a011530e93f179b7ac27eb3f17b9b (patch)
treee779d0a6defd166816da90ecbce3179636f30000 /plumbing/protocol/packp/updreq_decode.go
parentb294aa1351a9c1e9388d7901033596514cf5eaa9 (diff)
parentab19315b3137e0e10a4e638c8ea37610adc592ba (diff)
downloadgo-git-d6c4b113c17a011530e93f179b7ac27eb3f17b9b.tar.gz
Merge pull request #1199 from src-d/clean-up
*: code quality improvements
Diffstat (limited to 'plumbing/protocol/packp/updreq_decode.go')
-rw-r--r--plumbing/protocol/packp/updreq_decode.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/plumbing/protocol/packp/updreq_decode.go b/plumbing/protocol/packp/updreq_decode.go
index c15d49c..51e8183 100644
--- a/plumbing/protocol/packp/updreq_decode.go
+++ b/plumbing/protocol/packp/updreq_decode.go
@@ -225,7 +225,7 @@ func parseCommand(b []byte) (*Command, error) {
return nil, errInvalidNewObjId(err)
}
- return &Command{Old: oh, New: nh, Name: plumbing.ReferenceName(n)}, nil
+ return &Command{Old: oh, New: nh, Name: n}, nil
}
func parseHash(s string) (plumbing.Hash, error) {