From 6b0be659b97d452b6465dc31167803e763c6ef2d Mon Sep 17 00:00:00 2001 From: Emin Umut Gercek Date: Sun, 2 Feb 2025 14:04:07 +0300 Subject: [PATCH] Fix linter Signed-off-by: Emin Umut Gercek --- collector/arp_linux.go | 5 ----- 1 file changed, 5 deletions(-) diff --git a/collector/arp_linux.go b/collector/arp_linux.go index dfa3b431..98c83c99 100644 --- a/collector/arp_linux.go +++ b/collector/arp_linux.go @@ -51,11 +51,6 @@ var neighborStatesMap = map[uint16]string{ unix.NUD_PERMANENT: "permanent", } -type neighborState struct { - ip string - state string -} - func init() { registerCollector("arp", defaultEnabled, NewARPCollector) }