webdav: remove outdated comments

This commit is contained in:
emersion 2017-09-10 12:43:28 +02:00
parent 2807ec1dd2
commit 9131ab3eec
No known key found for this signature in database
GPG Key ID: 0FDE7BE0E88F5E48

3
xml.go
View File

@ -206,14 +206,12 @@ type Property struct {
} }
// http://www.webdav.org/specs/rfc4918.html#ELEMENT_error // http://www.webdav.org/specs/rfc4918.html#ELEMENT_error
// See multistatusWriter for the "D:" namespace prefix.
type xmlError struct { type xmlError struct {
XMLName xml.Name `xml:"DAV: error"` XMLName xml.Name `xml:"DAV: error"`
InnerXML []byte `xml:",innerxml"` InnerXML []byte `xml:",innerxml"`
} }
// http://www.webdav.org/specs/rfc4918.html#ELEMENT_propstat // http://www.webdav.org/specs/rfc4918.html#ELEMENT_propstat
// See multistatusWriter for the "D:" namespace prefix.
type propstat struct { type propstat struct {
Prop []Property `xml:"DAV: prop>_ignored_"` Prop []Property `xml:"DAV: prop>_ignored_"`
Status string `xml:"DAV: status"` Status string `xml:"DAV: status"`
@ -222,7 +220,6 @@ type propstat struct {
} }
// http://www.webdav.org/specs/rfc4918.html#ELEMENT_response // http://www.webdav.org/specs/rfc4918.html#ELEMENT_response
// See multistatusWriter for the "D:" namespace prefix.
type response struct { type response struct {
XMLName xml.Name `xml:"DAV: response"` XMLName xml.Name `xml:"DAV: response"`
Href []string `xml:"DAV: href"` Href []string `xml:"DAV: href"`