From be22d29d343cd05fe0f4d2f066f8f619a5a133f4 Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Thu, 30 Jan 2025 14:02:47 +0900 Subject: [PATCH] Fix clippy::unnecessary_semicolon warning ``` error: unnecessary semicolon --> tools/codegen/src/main.rs:251:10 | 251 | }; | ^ help: remove | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_semicolon = note: `-D clippy::unnecessary-semicolon` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(clippy::unnecessary_semicolon)]` ``` --- tools/codegen/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/codegen/src/main.rs b/tools/codegen/src/main.rs index a804b803e..087079879 100644 --- a/tools/codegen/src/main.rs +++ b/tools/codegen/src/main.rs @@ -248,7 +248,7 @@ fn main() -> Result<()> { if skip_existing_manifest_versions && existing_manifest.is_some() { eprintln!("Skipping {semver_version} already in manifest"); continue; - }; + } let mut download_info = BTreeMap::new(); let mut pubkey = None;