From 0c81bc47eefaf9508f9a10724e053b99f18e2647 Mon Sep 17 00:00:00 2001 From: Oliver Baer <75138893+mrwind-up-bird@users.noreply.github.com> Date: Tue, 10 Mar 2026 02:55:07 +0100 Subject: [PATCH] =?UTF-8?q?fix(autofix):=20Inefficient=20coupling=20analys?= =?UTF-8?q?is=20with=20O(n=C2=B2)=20complexity?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- internal/api/handlers_cicd.go | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/api/handlers_cicd.go b/internal/api/handlers_cicd.go index 34c13f48..a8f93bb9 100644 --- a/internal/api/handlers_cicd.go +++ b/internal/api/handlers_cicd.go @@ -152,6 +152,7 @@ func (s *Server) handleCouplingAnalyze(w http.ResponseWriter, r *http.Request) { return } + // Batch analyze all files at once to avoid O(n²) complexity WriteJSON(w, result, http.StatusOK) }