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:
parent
711644e190
commit
83c5dceaa7
2 changed files with 1 additions and 3 deletions
|
@ -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()));
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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)
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue