From f1087f860ca942062c3e080452857940d2650f19 Mon Sep 17 00:00:00 2001 From: Erik Darling <2136037+erikdarlingdata@users.noreply.github.com> Date: Sat, 25 Apr 2026 19:44:27 -0400 Subject: [PATCH] Drop redundant 'using PlanViewer.Cli;' in two CLI command files MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Child namespace has implicit access to the parent — and the using was placed after the namespace declaration, which is unusual style. Co-Authored-By: Claude Opus 4.7 (1M context) --- src/PlanViewer.Cli/Commands/AnalyzeCommand.cs | 2 -- src/PlanViewer.Cli/Commands/QueryStoreCommand.cs | 2 -- 2 files changed, 4 deletions(-) diff --git a/src/PlanViewer.Cli/Commands/AnalyzeCommand.cs b/src/PlanViewer.Cli/Commands/AnalyzeCommand.cs index 0558463..0ca5742 100644 --- a/src/PlanViewer.Cli/Commands/AnalyzeCommand.cs +++ b/src/PlanViewer.Cli/Commands/AnalyzeCommand.cs @@ -9,8 +9,6 @@ namespace PlanViewer.Cli.Commands; -using PlanViewer.Cli; - public static class AnalyzeCommand { private static readonly JsonSerializerOptions JsonOptions = new() diff --git a/src/PlanViewer.Cli/Commands/QueryStoreCommand.cs b/src/PlanViewer.Cli/Commands/QueryStoreCommand.cs index a0fd96e..c28bac8 100644 --- a/src/PlanViewer.Cli/Commands/QueryStoreCommand.cs +++ b/src/PlanViewer.Cli/Commands/QueryStoreCommand.cs @@ -8,8 +8,6 @@ namespace PlanViewer.Cli.Commands; -using PlanViewer.Cli; - public static class QueryStoreCommand { private static readonly JsonSerializerOptions JsonOptions = new()