From e9e19c3ea8e5102e4d76acc4077c9e312d09ccc1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Mierzwa?= Date: Sat, 11 Aug 2018 23:06:08 +0100 Subject: [PATCH] fix(style): remove unused code --- proxy_test.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/proxy_test.go b/proxy_test.go index fa5e435a0..951cc5360 100644 --- a/proxy_test.go +++ b/proxy_test.go @@ -24,10 +24,6 @@ func newCloseNotifyingRecorder() *closeNotifyingRecorder { } } -func (c *closeNotifyingRecorder) close() { - c.closed <- true -} - func (c *closeNotifyingRecorder) CloseNotify() <-chan bool { return c.closed }