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.rs8
1 files changed, 3 insertions, 5 deletions
diff --git a/crates/shirabe-symfony-console/src/helper/table_separator.rs b/crates/shirabe-symfony-console/src/helper/table_separator.rs
index 898a6630..7c1735c6 100644
--- a/crates/shirabe-symfony-console/src/helper/table_separator.rs
+++ b/crates/shirabe-symfony-console/src/helper/table_separator.rs
@@ -1,7 +1,7 @@
//! ref: composer/vendor/symfony/console/Helper/TableSeparator.php
-use crate::exception::invalid_argument_exception::InvalidArgumentException;
-use crate::helper::table_cell::{TableCell, TableCellOption};
+use crate::exception::InvalidArgumentException;
+use crate::helper::{TableCell, TableCellOption};
use indexmap::IndexMap;
/// Marks a row as being a separator.
@@ -30,9 +30,7 @@ impl TableSeparator {
self.inner.get_rowspan()
}
- pub fn get_style(
- &self,
- ) -> Option<std::rc::Rc<crate::helper::table_cell_style::TableCellStyle>> {
+ pub fn get_style(&self) -> Option<std::rc::Rc<crate::helper::TableCellStyle>> {
self.inner.get_style()
}
}