Removes unused underscore

This commit is contained in:
Manu Mtz-Almeida
2015-07-10 13:06:01 +02:00
parent fc5e355724
commit 0494e1b66a
3 changed files with 10 additions and 10 deletions
+2 -2
View File
@@ -11,11 +11,11 @@ import (
type xmlBinding struct{}
func (_ xmlBinding) Name() string {
func (xmlBinding) Name() string {
return "xml"
}
func (_ xmlBinding) Bind(req *http.Request, obj interface{}) error {
func (xmlBinding) Bind(req *http.Request, obj interface{}) error {
decoder := xml.NewDecoder(req.Body)
if err := decoder.Decode(obj); err != nil {
return err