From 86a58b51c027feb3bf8836359fb3adf1c436c53d Mon Sep 17 00:00:00 2001 From: Josh Bleecher Snyder Date: Tue, 19 Jan 2021 13:42:45 -0800 Subject: [PATCH] device: remove unused fields from DummyDatagram and DummyBind Signed-off-by: Josh Bleecher Snyder --- device/bind_test.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/device/bind_test.go b/device/bind_test.go index 339adbe..6c5c7f0 100644 --- a/device/bind_test.go +++ b/device/bind_test.go @@ -14,14 +14,11 @@ import ( type DummyDatagram struct { msg []byte endpoint conn.Endpoint - world bool // better type } type DummyBind struct { in6 chan DummyDatagram - ou6 chan DummyDatagram in4 chan DummyDatagram - ou4 chan DummyDatagram closed bool }