diff --git a/clippy_lints/src/functions.rs b/clippy_lints/src/functions.rs index 5b4f6f2ad17..0da7e26a1be 100644 --- a/clippy_lints/src/functions.rs +++ b/clippy_lints/src/functions.rs @@ -90,10 +90,7 @@ pub struct Functions { impl Functions { pub fn new(threshold: u64, max_lines: u64) -> Self { - Self { - threshold, - max_lines - } + Self { threshold, max_lines } } }