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

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