mirror of
https://github.com/Zedfrigg/ironbar.git
synced 2025-07-01 18:51:04 +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();
|
let iter = cache.iter();
|
||||||
for (id, (item, _)) in iter {
|
for (_, (item, _)) in iter {
|
||||||
println!("Initialising value with id {id}");
|
|
||||||
try_send!(tx, ClipboardEvent::Add(item.clone()));
|
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)?;
|
file.read_to_end(&mut bytes)?;
|
||||||
let bytes = Bytes::from(&bytes);
|
let bytes = Bytes::from(&bytes);
|
||||||
|
|
||||||
println!("Num bytes: {}", bytes.len());
|
|
||||||
ClipboardValue::Image(bytes)
|
ClipboardValue::Image(bytes)
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue