From 1985f1cfb9dd2428dccd11967b744e2e811db2d3 Mon Sep 17 00:00:00 2001 From: Brett Mayson Date: Sun, 20 Oct 2024 02:34:31 +0000 Subject: [PATCH] fmt --- bin/src/modules/sqf.rs | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/bin/src/modules/sqf.rs b/bin/src/modules/sqf.rs index c9e11985..cb5f6921 100644 --- a/bin/src/modules/sqf.rs +++ b/bin/src/modules/sqf.rs @@ -24,9 +24,7 @@ pub struct SQFCompiler { impl SQFCompiler { #[must_use] pub const fn new() -> Self { - Self { - database: None, - } + Self { database: None } } } @@ -129,10 +127,7 @@ impl Module for SQFCompiler { for new_report in reports { report.merge(new_report); } - info!( - "Compiled {} sqf files", - counter.load(Ordering::Relaxed) - ); + info!("Compiled {} sqf files", counter.load(Ordering::Relaxed)); Ok(report) }