Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
BrettMayson committed Oct 20, 2024
1 parent 559dca4 commit 1985f1c
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions bin/src/modules/sqf.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,7 @@ pub struct SQFCompiler {
impl SQFCompiler {
#[must_use]
pub const fn new() -> Self {
Self {
database: None,
}
Self { database: None }
}
}

Expand Down Expand Up @@ -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)
}

Expand Down

0 comments on commit 1985f1c

Please sign in to comment.