From c26ff59b47753c732360eddb424120a09aabfb11 Mon Sep 17 00:00:00 2001 From: Sanaei Date: Sun, 23 Aug 2026 23:18:49 +0200 Subject: [PATCH] chore(sub): drop the inlined externalLinkEnabled test helper 81fcacab applied the helper's own //go:fix inline directive, rewriting its only call site to new(false). The function was left behind with no callers. --- internal/sub/mutation_audit_test.go | 5 ----- 1 file changed, 5 deletions(-) diff --git a/internal/sub/mutation_audit_test.go b/internal/sub/mutation_audit_test.go index dc3a3a7dd..778fbe005 100644 --- a/internal/sub/mutation_audit_test.go +++ b/internal/sub/mutation_audit_test.go @@ -25,11 +25,6 @@ func initMutDB(t *testing.T) { t.Cleanup(func() { _ = database.CloseDB() }) } -//go:fix inline -func externalLinkEnabled(v bool) *bool { - return new(v) -} - // --- json_service.go:40 — rules are merged into routing only when non-empty --- func TestSubJsonService_CustomRulesPrepended(t *testing.T) {