From cad14c6b46413b23d3afee7c979eeb0dbd4fb84c Mon Sep 17 00:00:00 2001 From: Blaž Hrastnik Date: Sun, 27 Jun 2021 13:27:35 +0900 Subject: Address nightly clippy warnings --- helix-tui/src/widgets/table.rs | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) (limited to 'helix-tui/src/widgets/table.rs') diff --git a/helix-tui/src/widgets/table.rs b/helix-tui/src/widgets/table.rs index 44f6c58f..ee5147b7 100644 --- a/helix-tui/src/widgets/table.rs +++ b/helix-tui/src/widgets/table.rs @@ -10,10 +10,7 @@ use cassowary::{ {Expression, Solver}, }; use helix_view::graphics::{Rect, Style}; -use std::{ - collections::HashMap, - iter::{self, Iterator}, -}; +use std::collections::HashMap; use unicode_width::UnicodeWidthStr; /// A [`Cell`] contains the [`Text`] to be displayed in a [`Row`] of a [`Table`]. @@ -415,9 +412,7 @@ impl<'a> Table<'a> { let has_selection = state.selected.is_some(); let columns_widths = self.get_columns_widths(table_area.width, has_selection); let highlight_symbol = self.highlight_symbol.unwrap_or(""); - let blank_symbol = iter::repeat(" ") - .take(highlight_symbol.width()) - .collect::(); + let blank_symbol = " ".repeat(highlight_symbol.width()); let mut current_height = 0; let mut rows_height = table_area.height; -- cgit v1.2.3-70-g09d2