diff options
Diffstat (limited to 'src/pkg/http/url.go')
-rw-r--r-- | src/pkg/http/url.go | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/pkg/http/url.go b/src/pkg/http/url.go index e934b27c4..b38585ac2 100644 --- a/src/pkg/http/url.go +++ b/src/pkg/http/url.go @@ -56,7 +56,6 @@ const ( encodeOpaque ) - type URLEscapeError string func (e URLEscapeError) String() string { @@ -114,7 +113,6 @@ func shouldEscape(c byte, mode encoding) bool { return true } - // URLUnescape unescapes a string in ``URL encoded'' form, // converting %AB into the byte 0xAB and '+' into ' ' (space). // It returns an error if any % is not followed |