mirror of
https://git.proxmox.com/git/proxmox
synced 2025-04-28 20:29:17 +00:00
![]() Fixes: warning: unneeded `return` statement --> proxmox-rrd/src/cache/rrd_map.rs:117:13 | 117 | return Ok(true); | ^^^^^^^^^^^^^^^ | = 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` | 117 - return Ok(true); 117 + Ok(true) | warning: unneeded `return` statement --> proxmox-rrd/src/cache/rrd_map.rs:119:13 | 119 | return Ok(false); | ^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_return help: remove `return` | 119 - return Ok(false); 119 + Ok(false) Signed-off-by: Maximiliano Sandoval <m.sandoval@proxmox.com> |
||
---|---|---|
.. | ||
debian | ||
examples | ||
src | ||
tests | ||
Cargo.toml |