aboutsummaryrefslogtreecommitdiff
path: root/server/tools/src/main.rs
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2025-09-30 21:33:38 +0200
committermetamuffin <metamuffin@disroot.org>2025-09-30 21:33:38 +0200
commitf15c20e887a58ae8d65c6d4f240d74a3b74cd55d (patch)
treea5ac3043a46eb33150e6323d22d8bffbc9048d00 /server/tools/src/main.rs
parent080672a5fee18336971fa18ab35bb82fb62a0225 (diff)
downloadhurrycurry-f15c20e887a58ae8d65c6d4f240d74a3b74cd55d.tar
hurrycurry-f15c20e887a58ae8d65c6d4f240d74a3b74cd55d.tar.bz2
hurrycurry-f15c20e887a58ae8d65c6d4f240d74a3b74cd55d.tar.zst
clippy; make use of is_some_and and is_none_or
Diffstat (limited to 'server/tools/src/main.rs')
-rw-r--r--server/tools/src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/tools/src/main.rs b/server/tools/src/main.rs
index 03de90b3..c121d5a1 100644
--- a/server/tools/src/main.rs
+++ b/server/tools/src/main.rs
@@ -107,7 +107,7 @@ fn main() -> Result<()> {
let mut index = DataIndex::default();
index.reload()?;
for map in index.maps.keys() {
- check_map(&map)?;
+ check_map(map)?;
}
} else {
check_map(&map)?;