aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe-symfony-console/src/helper/table_separator.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/shirabe-symfony-console/src/helper/table_separator.rs')
-rw-r--r--crates/shirabe-symfony-console/src/helper/table_separator.rs4
1 files changed, 1 insertions, 3 deletions
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<String, TableCellOption>,
- ) -> Result<Self, InvalidArgumentException> {
+ fn new1(options: IndexMap<String, TableCellOption>) -> Result<Self, InvalidArgumentException> {
Ok(Self {
inner: TableCell::new("", options)?,
})