From a540b6433109b828f7bd189bc03da5a5d68b516e Mon Sep 17 00:00:00 2001 From: Sudo-Ivan Date: Tue, 30 Dec 2025 21:14:04 -0600 Subject: [PATCH] refactor: remove commented-out code in mockInterface to clean up interface_test.go --- pkg/interfaces/interface_test.go | 1 - 1 file changed, 1 deletion(-) diff --git a/pkg/interfaces/interface_test.go b/pkg/interfaces/interface_test.go index d7b00f8..b83cbca 100644 --- a/pkg/interfaces/interface_test.go +++ b/pkg/interfaces/interface_test.go @@ -183,7 +183,6 @@ func (m *mockInterface) Send(data []byte, addr string) error { return nil } -// Add other methods to satisfy the Interface interface (can be minimal/panic) func (m *mockInterface) GetType() common.InterfaceType { return common.IF_TYPE_NONE } func (m *mockInterface) GetMode() common.InterfaceMode { return common.IF_MODE_FULL } func (m *mockInterface) ProcessIncoming(data []byte) {}