From: Maximiliano Sandoval <m.sandoval@proxmox.com>
To: pdm-devel@lists.proxmox.com
Subject: [pdm-devel] [PATCH proxmox-yew-comp 04/15] apt_repositories: collapse else-if blocks
Date: Mon, 13 Jan 2025 15:27:14 +0100 [thread overview]
Message-ID: <20250113142725.523748-4-m.sandoval@proxmox.com> (raw)
In-Reply-To: <20250113142725.523748-1-m.sandoval@proxmox.com>
Fixes:
warning: this `else { if .. }` block can be collapsed
--> src/apt_repositories.rs:151:12
|
151 | } else {
| ____________^
152 | | if config.errors.is_empty() {
153 | | // just avoid that we show "get updates"
154 | | if has_test || has_no_subscription {
... |
165 | | }
166 | | }
| |_____^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#collapsible_else_if
= note: `#[warn(clippy::collapsible_else_if)]` on by default
help: collapse nested if block
|
151 ~ } else if config.errors.is_empty() {
152 + // just avoid that we show "get updates"
153 + if has_test || has_no_subscription {
154 + list.push(StatusLine::ok(tr!(
155 + "You get updates for {0}",
156 + product.project_text()
157 + )));
158 + } else if has_enterprise && active_subscription {
159 + list.push(StatusLine::ok(tr!(
160 + "You get supported updates for {0}",
161 + product.project_text()
162 + )));
163 + }
164 + }
|
Signed-off-by: Maximiliano Sandoval <m.sandoval@proxmox.com>
---
src/apt_repositories.rs | 43 +++++++++++++++++++----------------------
1 file changed, 20 insertions(+), 23 deletions(-)
diff --git a/src/apt_repositories.rs b/src/apt_repositories.rs
index 534d642..8e6207f 100644
--- a/src/apt_repositories.rs
+++ b/src/apt_repositories.rs
@@ -148,20 +148,18 @@ fn update_status_store(
"No {0} repository is enabled, you do not get any updates!",
product.project_text()
)));
- } else {
- if config.errors.is_empty() {
- // just avoid that we show "get updates"
- if has_test || has_no_subscription {
- list.push(StatusLine::ok(tr!(
- "You get updates for {0}",
- product.project_text()
- )));
- } else if has_enterprise && active_subscription {
- list.push(StatusLine::ok(tr!(
- "You get supported updates for {0}",
- product.project_text()
- )));
- }
+ } else if config.errors.is_empty() {
+ // just avoid that we show "get updates"
+ if has_test || has_no_subscription {
+ list.push(StatusLine::ok(tr!(
+ "You get updates for {0}",
+ product.project_text()
+ )));
+ } else if has_enterprise && active_subscription {
+ list.push(StatusLine::ok(tr!(
+ "You get supported updates for {0}",
+ product.project_text()
+ )));
}
}
@@ -186,20 +184,19 @@ fn update_status_store(
ignore_pre_upgrade_warning.insert((&info.path, info.index));
check_mixed_suites = true;
}
- if info.kind == "origin" {
- if info.message == "Debian" || info.message == "Proxmox" {
- controlled_origin.insert((&info.path, info.index));
- }
+ if info.kind == "origin" && (info.message == "Debian" || info.message == "Proxmox") {
+ controlled_origin.insert((&info.path, info.index));
}
}
let mut suites_warning = false;
for info in &config.infos {
- if info.kind == "warning" && info.property.as_deref() == Some("Suites") {
- if enabled_repos.contains(&(&info.path, info.index)) {
- suites_warning = true;
- break;
- }
+ if info.kind == "warning"
+ && info.property.as_deref() == Some("Suites")
+ && enabled_repos.contains(&(&info.path, info.index))
+ {
+ suites_warning = true;
+ break;
}
}
--
2.39.5
_______________________________________________
pdm-devel mailing list
pdm-devel@lists.proxmox.com
https://lists.proxmox.com/cgi-bin/mailman/listinfo/pdm-devel
next prev parent reply other threads:[~2025-01-13 14:28 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-01-13 14:27 [pdm-devel] [PATCH proxmox-yew-comp 01/15] remove needless borrows Maximiliano Sandoval
2025-01-13 14:27 ` [pdm-devel] [PATCH proxmox-yew-comp 02/15] remove needless casts Maximiliano Sandoval
2025-01-13 14:27 ` [pdm-devel] [PATCH proxmox-yew-comp 03/15] apt_package_manager: use &str instead of format! Maximiliano Sandoval
2025-01-13 14:27 ` Maximiliano Sandoval [this message]
2025-01-13 14:27 ` [pdm-devel] [PATCH proxmox-yew-comp 05/15] apt_repositories: collapse match statement with if-let Maximiliano Sandoval
2025-01-13 14:27 ` [pdm-devel] [PATCH proxmox-yew-comp 06/15] use any() instead of find and is_none combination Maximiliano Sandoval
2025-01-13 14:27 ` [pdm-devel] [PATCH proxmox-yew-comp 07/15] remove unnecesary closure used with then() Maximiliano Sandoval
2025-01-13 14:27 ` [pdm-devel] [PATCH proxmox-yew-comp 08/15] use *= operator for assigments Maximiliano Sandoval
2025-01-13 14:27 ` [pdm-devel] [PATCH proxmox-yew-comp 09/15] use or_default and unwrap_or_default Maximiliano Sandoval
2025-01-13 14:27 ` [pdm-devel] [PATCH proxmox-yew-comp 10/15] remove redundant pattern matching Maximiliano Sandoval
2025-01-13 14:27 ` [pdm-devel] [PATCH proxmox-yew-comp 11/15] use std::mem::swap instead of manual swapping Maximiliano Sandoval
2025-01-13 14:27 ` [pdm-devel] [PATCH proxmox-yew-comp 12/15] use enumerate() instead of indexing Maximiliano Sandoval
2025-01-13 14:27 ` [pdm-devel] [PATCH proxmox-yew-comp 13/15] use len() instead of length comparison to zero Maximiliano Sandoval
2025-01-13 14:27 ` [pdm-devel] [PATCH proxmox-yew-comp 14/15] use cloned() instead of explicit clone() in closure Maximiliano Sandoval
2025-01-13 14:27 ` [pdm-devel] [PATCH proxmox-yew-comp 15/15] use and_then instead of map(..).flatten(..) on Option Maximiliano Sandoval
2025-01-14 8:29 ` [pdm-devel] applied: [PATCH proxmox-yew-comp 01/15] remove needless borrows Dietmar Maurer
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20250113142725.523748-4-m.sandoval@proxmox.com \
--to=m.sandoval@proxmox.com \
--cc=pdm-devel@lists.proxmox.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox