diff options
author | Máximo Cuadros <mcuadros@gmail.com> | 2017-11-29 18:01:24 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-29 18:01:24 +0100 |
commit | 7ced03216a47327d64f68c750114a96cfcbae38b (patch) | |
tree | a797b79d0a750972ba9809eb52691cb09f9b6383 /plumbing/protocol/packp/srvresp.go | |
parent | c07c778ed043429427533e2fd7549a3d54b903f1 (diff) | |
parent | 18e6f9daa3899318d36b525b068837f49bc2c1cf (diff) | |
download | go-git-7ced03216a47327d64f68c750114a96cfcbae38b.tar.gz |
Merge pull request #667 from ferhatelmas/simplify
all: simplification
Diffstat (limited to 'plumbing/protocol/packp/srvresp.go')
-rw-r--r-- | plumbing/protocol/packp/srvresp.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plumbing/protocol/packp/srvresp.go b/plumbing/protocol/packp/srvresp.go index 434e8aa..6a91991 100644 --- a/plumbing/protocol/packp/srvresp.go +++ b/plumbing/protocol/packp/srvresp.go @@ -77,7 +77,7 @@ func (r *ServerResponse) stopReading(reader *bufio.Reader) (bool, error) { func (r *ServerResponse) isValidCommand(b []byte) bool { commands := [][]byte{ack, nak} for _, c := range commands { - if bytes.Compare(b, c) == 0 { + if bytes.Equal(b, c) { return true } } @@ -90,11 +90,11 @@ func (r *ServerResponse) decodeLine(line []byte) error { return fmt.Errorf("unexpected flush") } - if bytes.Compare(line[0:3], ack) == 0 { + if bytes.Equal(line[0:3], ack) { return r.decodeACKLine(line) } - if bytes.Compare(line[0:3], nak) == 0 { + if bytes.Equal(line[0:3], nak) { return nil } |