From 9131ab3eecdc9524b1d940aba521ab1468ecc5d7 Mon Sep 17 00:00:00 2001 From: emersion Date: Sun, 10 Sep 2017 12:43:28 +0200 Subject: [PATCH] webdav: remove outdated comments --- xml.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/xml.go b/xml.go index ef69afe..0c8ac75 100644 --- a/xml.go +++ b/xml.go @@ -206,14 +206,12 @@ type Property struct { } // http://www.webdav.org/specs/rfc4918.html#ELEMENT_error -// See multistatusWriter for the "D:" namespace prefix. type xmlError struct { XMLName xml.Name `xml:"DAV: error"` InnerXML []byte `xml:",innerxml"` } // http://www.webdav.org/specs/rfc4918.html#ELEMENT_propstat -// See multistatusWriter for the "D:" namespace prefix. type propstat struct { Prop []Property `xml:"DAV: prop>_ignored_"` Status string `xml:"DAV: status"` @@ -222,7 +220,6 @@ type propstat struct { } // http://www.webdav.org/specs/rfc4918.html#ELEMENT_response -// See multistatusWriter for the "D:" namespace prefix. type response struct { XMLName xml.Name `xml:"DAV: response"` Href []string `xml:"DAV: href"`