Explorar o código

refactor(clippy): clippy::extra_unused_lifetimes

Signed-off-by: Christina Sørensen <christina@cafkafk.com>
Christina Sørensen %!s(int64=2) %!d(string=hai) anos
pai
achega
a579296ad8
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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());