dcsunny 4 years ago
parent
commit
e86de4fe97
1 changed files with 0 additions and 3 deletions
  1. 0 3
      http/handle.go

+ 0 - 3
http/handle.go

@@ -1,7 +1,6 @@
 package http
 
 import (
-	"fmt"
 	"net/http"
 	"strings"
 
@@ -48,9 +47,7 @@ func codecForRequest(r *http.Request) encoding.Codec {
 	}
 	if codec == nil {
 		codec = encoding.GetCodec(json.Name)
-		fmt.Println(codec == nil)
 	}
-	fmt.Println(codec == nil)
 	return codec
 }