From d5630142fdba6280c47458cf30165d3d62d44fc3 Mon Sep 17 00:00:00 2001 From: Aaron Jacobs Date: Mon, 23 Feb 2015 10:44:39 +1100 Subject: [PATCH] net/http: Removed some unused constants in request.go. Change-Id: I05cdf357249166a45105703e9317793aa2088844 Reviewed-on: https://go-review.googlesource.com/5560 Reviewed-by: Andrew Gerrand --- src/net/http/request.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/net/http/request.go b/src/net/http/request.go index f7a7f19b9b..639a579bdf 100644 --- a/src/net/http/request.go +++ b/src/net/http/request.go @@ -25,9 +25,6 @@ import ( ) const ( - maxValueLength = 4096 - maxHeaderLines = 1024 - chunkSize = 4 << 10 // 4 KB chunks defaultMaxMemory = 32 << 20 // 32 MB )