aboutsummaryrefslogtreecommitdiffstats
path: root/plumbing/protocol/packp/srvresp.go
diff options
context:
space:
mode:
authorAntonio Jesus Navarro Perez <antonio@sourced.tech>2017-02-28 12:17:13 +0100
committerAntonio Jesus Navarro Perez <antonio@sourced.tech>2017-02-28 12:17:13 +0100
commit9251df17028a86cb0a0d486a3cd7e0b3eb2947f6 (patch)
treed4be201b1334b91f69de1caf86f3bdbbfce84ab2 /plumbing/protocol/packp/srvresp.go
parent0e9dea19f856e256e609c3390e000760d2b2b95a (diff)
downloadgo-git-9251df17028a86cb0a0d486a3cd7e0b3eb2947f6.tar.gz
Remove TODOs from documentation
Diffstat (limited to 'plumbing/protocol/packp/srvresp.go')
-rw-r--r--plumbing/protocol/packp/srvresp.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/plumbing/protocol/packp/srvresp.go b/plumbing/protocol/packp/srvresp.go
index 95e1e57..4c1d6db 100644
--- a/plumbing/protocol/packp/srvresp.go
+++ b/plumbing/protocol/packp/srvresp.go
@@ -14,13 +14,13 @@ const ackLineLen = 44
// ServerResponse object acknowledgement from upload-pack service
type ServerResponse struct {
- // TODO: implement support for multi_ack or multi_ack_detailed responses
ACKs []plumbing.Hash
}
// Decode decodes the response into the struct, isMultiACK should be true, if
// the request was done with multi_ack or multi_ack_detailed capabilities
func (r *ServerResponse) Decode(reader io.Reader, isMultiACK bool) error {
+ // TODO: implement support for multi_ack or multi_ack_detailed responses
if isMultiACK {
return errors.New("multi_ack and multi_ack_detailed are not supported")
}