Skip to content

update changelog and delete .gitpod.yml #806

update changelog and delete .gitpod.yml

update changelog and delete .gitpod.yml #806

GitHub Actions / clippy succeeded Oct 13, 2025 in 1s

clippy

2 warnings

Details

Results

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

Versions

  • rustc 1.92.0-nightly (2300c2aef 2025-10-12)
  • cargo 1.92.0-nightly (81c3f77a4 2025-10-10)
  • clippy 0.1.92 (2300c2aef7 2025-10-12)

Annotations

Check warning on line 141 in azalea/src/container.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

this `if` statement can be collapsed

warning: this `if` statement can be collapsed
   --> azalea/src/container.rs:137:13
    |
137 | /             if let Some(timeout_ticks) = timeout_ticks {
138 | |                 if elapsed_ticks >= timeout_ticks {
139 | |                     return None;
140 | |                 }
141 | |             }
    | |_____________^
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#collapsible_if
    = note: `#[warn(clippy::collapsible_if)]` on by default
help: collapse nested if block
    |
137 ~             if let Some(timeout_ticks) = timeout_ticks
138 ~                 && elapsed_ticks >= timeout_ticks {
139 |                     return None;
140 ~                 }
    |

Check warning on line 58 in azalea-entity/src/data.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

unnecessary parentheses

warning: unnecessary parentheses
  --> azalea-entity/src/data.rs:58:24
   |
58 | #[derive(Clone, Debug, EnumAsInner, AzBuf, PartialEq)]
   |                        ^^^^^^^^^^^
   |
   = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#double_parens
   = note: `#[warn(clippy::double_parens)]` on by default
   = note: this warning originates in the derive macro `EnumAsInner` (in Nightly builds, run with -Z macro-backtrace for more info)