From 03ac39ce5e6af4c4bca58b54d5b160a154b7aa0e Mon Sep 17 00:00:00 2001 From: Daniel Martí Date: Mon, 2 Sep 2019 14:17:23 +0200 Subject: std: remove unused bits of code all over the place MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Some were never used, and some haven't been used for years. One exception is net/http's readerAndCloser, which was only used in a test. Move it to a test file. While at it, remove a check in regexp that could never fire; the field is an uint32, so it can never be negative. Change-Id: Ia2200f6afa106bae4034045ea8233b452f38747b Reviewed-on: https://go-review.googlesource.com/c/go/+/192621 Run-TryBot: Daniel Martí TryBot-Result: Gobot Gobot Reviewed-by: Brad Fitzpatrick --- src/encoding/xml/marshal_test.go | 1 - 1 file changed, 1 deletion(-) (limited to 'src/encoding/xml') diff --git a/src/encoding/xml/marshal_test.go b/src/encoding/xml/marshal_test.go index a0ccf44028..8473158bcd 100644 --- a/src/encoding/xml/marshal_test.go +++ b/src/encoding/xml/marshal_test.go @@ -392,7 +392,6 @@ func stringptr(x string) *string { type T1 struct{} type T2 struct{} -type T3 struct{} type IndirComment struct { T1 T1 -- cgit v1.3-5-g9baa