clippy: Use println!(f), without empty string.
This commit is contained in:
parent
a34ad7d15f
commit
3a24afd111
|
@ -1033,7 +1033,7 @@ where
|
||||||
|
|
||||||
let max_length_with_space = max_length + 1;
|
let max_length_with_space = max_length + 1;
|
||||||
|
|
||||||
try!(writeln!(f, ""));
|
try!(writeln!(f));
|
||||||
try!(writeln!(
|
try!(writeln!(
|
||||||
f,
|
f,
|
||||||
" ┌ {:>width$} ┐",
|
" ┌ {:>width$} ┐",
|
||||||
|
@ -1061,7 +1061,7 @@ where
|
||||||
"",
|
"",
|
||||||
width = max_length_with_space * ncols - 1
|
width = max_length_with_space * ncols - 1
|
||||||
));
|
));
|
||||||
writeln!(f, "")
|
writeln!(f)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue