dcsunny 4 年之前
父節點
當前提交
e86de4fe97
共有 1 個文件被更改,包括 0 次插入3 次删除
  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
 }