From 6931b0f5a16c02e314fda6d3cccc5c08c51ceb68 Mon Sep 17 00:00:00 2001 From: Unknown Date: Sun, 13 Jan 2019 16:53:26 -0500 Subject: [PATCH] rustfmt --- clippy_lints/src/functions.rs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) 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 } } }