Skip to content

migration to single monorepo with lib support #58

migration to single monorepo with lib support

migration to single monorepo with lib support #58

This check has been archived and is scheduled for deletion. Learn more about checks retention
GitHub Actions / clippy succeeded Jul 29, 2023 in 0s

clippy

1 warning

Details

Results

Message level Amount
Internal compiler error 0
Error 0
Warning 1
Note 0
Help 0

Versions

  • rustc 1.71.0 (8ede3aae2 2023-07-12)
  • cargo 1.71.0 (cfd3bbd8f 2023-06-08)
  • clippy 0.1.71 (8ede3aa 2023-07-12)

Annotations

Check warning on line 88 in crates/blockless-car/src/utils/archive_local.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

unneeded `return` statement

warning: unneeded `return` statement
  --> crates/blockless-car/src/utils/archive_local.rs:73:5
   |
73 | /     return move |w: WriteStream| {
74 | |         match w {
75 | |             WriteStream::Bytes(bs) => {
76 | |                 hash_codec.update(bs);
...  |
87 | |         }
88 | |     };
   | |_____^
   |
   = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_return
   = note: `#[warn(clippy::needless_return)]` on by default
   = help: remove `return`