cleanup #2070
Annotations
3 errors and 5 warnings
mismatched types:
azalea-physics/src/fluids.rs#L37
error[E0308]: mismatched types
--> azalea-physics/src/fluids.rs:37:65
|
37 | .and_then(|d| d.map.get(instance_name).and_then(|d| d.ultrawarm))
| ^^^^^^^^^^^ expected `Option<_>`, found `bool`
|
= note: expected enum `std::option::Option<_>`
found type `bool`
help: try wrapping the expression in `Some`
|
37 | .and_then(|d| d.map.get(instance_name).and_then(|d| Some(d.ultrawarm)))
| +++++ +
|
mismatched types:
azalea-physics/src/fluids.rs#L37
error[E0308]: mismatched types
--> azalea-physics/src/fluids.rs:37:65
|
37 | .and_then(|d| d.map.get(instance_name).and_then(|d| d.ultrawarm))
| ^^^^^^^^^^^ expected `Option<_>`, found `bool`
|
= note: expected enum `std::option::Option<_>`
found type `bool`
help: try wrapping the expression in `Some`
|
37 | .and_then(|d| d.map.get(instance_name).and_then(|d| Some(d.ultrawarm)))
| +++++ +
|
clippy_check
Clippy had exited with the 101 exit code
|
clippy_check
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
clippy_check
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
clippy_check
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
clippy_check
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
clippy_check
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|