Просмотр исходного кода

refactor(clippy): clippy::extra_unused_lifetimes

Signed-off-by: Christina Sørensen <christina@cafkafk.com>
Christina Sørensen 2 лет назад
Родитель
Сommit
a579296ad8
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      src/output/table.rs

+ 1 - 1
src/output/table.rs

@@ -437,7 +437,7 @@ pub struct Row {
     cells: Vec<TextCell>,
 }
 
-impl<'a, 'f> Table<'a> {
+impl<'a> Table<'a> {
     pub fn new(options: &'a Options, git: Option<&'a GitCache>, theme: &'a Theme) -> Table<'a> {
         let columns = options.columns.collect(git.is_some());
         let widths = TableWidths::zero(columns.len());