Skip to content

Commit

Permalink
Fix clippy::unnecessary_semicolon warning
Browse files Browse the repository at this point in the history
```
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)]`
```
  • Loading branch information
taiki-e committed Jan 30, 2025
1 parent e466aa8 commit be22d29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/codegen/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit be22d29

Please sign in to comment.