1
0
Fork 0
mirror of https://github.com/Zedfrigg/ironbar.git synced 2025-08-17 23:01:04 +02:00

chore: clean up println calls

This commit is contained in:
Jake Stanger 2023-03-04 23:13:22 +00:00
parent 711644e190
commit 83c5dceaa7
No known key found for this signature in database
GPG key ID: C51FC8F9CB0BEA61
2 changed files with 1 additions and 3 deletions

View file

@ -97,8 +97,7 @@ impl ClipboardClient {
}
let iter = cache.iter();
for (id, (item, _)) in iter {
println!("Initialising value with id {id}");
for (_, (item, _)) in iter {
try_send!(tx, ClipboardEvent::Add(item.clone()));
}
}