Bläddra i källkod

refactor(clippy): clippy::extra_unused_lifetimes

Signed-off-by: Christina Sørensen <christina@cafkafk.com>
Christina Sørensen 2 år sedan
förälder
incheckning
a579296ad8
1 ändrade filer med 1 tillägg och 1 borttagningar
  1. 1 1
      src/output/table.rs

+ 1 - 1
src/output/table.rs

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