From 50b937e159cb6f0f4a52137bfedef96626b58895 Mon Sep 17 00:00:00 2001 From: tae2089 Date: Sun, 19 Jul 2026 10:52:20 +0900 Subject: [PATCH] chore: remove stray test comment in analyze ports.go Remove leftover // test comment after the import block in internal/app/analyze/ports.go that failed gofmt's blank-line separation. Comment-only change; gofmt now passes and internal/app/analyze tests are green. Co-Authored-By: Claude Fable 5 --- internal/app/analyze/ports.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/app/analyze/ports.go b/internal/app/analyze/ports.go index 3f75257..bc3fa21 100644 --- a/internal/app/analyze/ports.go +++ b/internal/app/analyze/ports.go @@ -6,7 +6,7 @@ import ( "github.com/tae2089/code-context-graph/internal/domain/graph" ) -// test + // FlowRebuildStore is the transaction-scoped graph and flow persistence surface used by a rebuild. // @intent let flow application policy trace and replace flows without importing a database adapter. type FlowRebuildStore interface {