1
0
Fork 0
mirror of https://github.com/Zedfrigg/ironbar.git synced 2025-07-01 10:41:03 +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()));
}
}

View file

@ -246,7 +246,6 @@ fn read_file(mime_type: &MimeType, file: &mut File) -> io::Result<ClipboardItem>
file.read_to_end(&mut bytes)?;
let bytes = Bytes::from(&bytes);
println!("Num bytes: {}", bytes.len());
ClipboardValue::Image(bytes)
}
};