From 6fa0033a4551125a5da0656c16cce61ff1db8205 Mon Sep 17 00:00:00 2001 From: kim Date: Thu, 3 Apr 2025 14:05:24 +0100 Subject: [PATCH] remove unused function to appease the linter --- internal/cache/timeline/status.go | 6 ------ 1 file changed, 6 deletions(-) diff --git a/internal/cache/timeline/status.go b/internal/cache/timeline/status.go index 062a94278..b874c752e 100644 --- a/internal/cache/timeline/status.go +++ b/internal/cache/timeline/status.go @@ -61,12 +61,6 @@ type StatusMeta struct { loaded *gtsmodel.Status } -// isNotLoaded is a small utility func that can fill -// the slices.DeleteFunc() signature requirements. -func (m *StatusMeta) isNotLoaded() bool { - return m.loaded == nil -} - // StatusTimelines ... type StatusTimelines struct { ptr atomic.Pointer[map[string]*StatusTimeline] // ronly except by CAS