1
0
Fork 0
mirror of https://github.com/Zedfrigg/ironbar.git synced 2025-09-15 19:26:58 +02:00

refactor(networkmanager): implement clippy::pedantic suggestions

This commit is contained in:
Reinout Meliesie 2025-08-20 18:49:20 +02:00
commit f4369b20d3
Signed by: zedfrigg
GPG key ID: 3AFCC06481308BC6
2 changed files with 21 additions and 25 deletions

View file

@ -44,7 +44,7 @@ impl Client {
spawn(watch_device(added_device.to_owned(), tx.clone()));
}
let removed_devices = devices.difference(&new_devices);
let _removed_devices = devices.difference(&new_devices);
// TODO: Cook up some way to notify closures for removed devices to exit
devices = new_devices;