Skip to content

Auth Customization Options (#159) #1892

Auth Customization Options (#159)

Auth Customization Options (#159) #1892

GitHub Actions / clippy succeeded Aug 11, 2024 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.82.0-nightly (730d5d409 2024-08-10)
  • cargo 1.82.0-nightly (0d8d22f83 2024-08-08)
  • clippy 0.1.82 (730d5d4 2024-08-10)

Annotations

Check warning on line 10 in azalea/build.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

unneeded `return` statement

warning: unneeded `return` statement
  --> azalea/build.rs:10:18
   |
10 |         Ok(_) => return, // nightly
   |                  ^^^^^^
   |
   = 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: replace `return` with a unit value
   |
10 |         Ok(_) => (), // nightly
   |                  ~~