remove the dbg

This commit is contained in:
Tamo 2022-10-16 02:38:55 +02:00 committed by Clément Renault
parent d481669b7e
commit 955d3339f0
No known key found for this signature in database
GPG Key ID: 92ADA4E935E71FA4

View File

@ -109,7 +109,7 @@ impl V6Reader {
&mut self,
) -> Box<dyn Iterator<Item = Result<(Task, Option<Box<super::UpdateFile>>)>> + '_> {
Box::new((&mut self.tasks).lines().map(|line| -> Result<_> {
let task: Task = serde_json::from_str(&dbg!(line?)).unwrap();
let task: Task = serde_json::from_str(&line?).unwrap();
let update_file_path = self
.dump