From f38080643d80b258393f2b7ab20349b122fe4591 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Mon, 10 Aug 2026 04:20:15 +0900 Subject: refactor(symfony-console): drop the unused Table surface Table titles, per-column styles and appendRow have no callers: a plugin-provided command runs inside the worker-side Symfony console application, so its table rendering resolves against the real PHP Table rather than this port. Remove those methods together with the fields they were the only writers of, and the render branches those fields made unreachable. Co-Authored-By: Claude Opus 5 --- crates/shirabe-symfony-console/src/helper/table_separator.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'crates/shirabe-symfony-console/src/helper/table_separator.rs') diff --git a/crates/shirabe-symfony-console/src/helper/table_separator.rs b/crates/shirabe-symfony-console/src/helper/table_separator.rs index 99862848..898a6630 100644 --- a/crates/shirabe-symfony-console/src/helper/table_separator.rs +++ b/crates/shirabe-symfony-console/src/helper/table_separator.rs @@ -15,9 +15,7 @@ impl TableSeparator { Self::new1(IndexMap::new()).expect("TableSeparator default options are always valid") } - pub fn new1( - options: IndexMap, - ) -> Result { + fn new1(options: IndexMap) -> Result { Ok(Self { inner: TableCell::new("", options)?, }) -- cgit v1.3.1-4-g156e