diff --git a/project/src/parser.rs b/project/src/parser.rs index 3dd839d..7b4fd89 100644 --- a/project/src/parser.rs +++ b/project/src/parser.rs @@ -134,10 +134,5 @@ impl Parser { ParserModes::Credit => self.transaction(ParserModes::Credit, line), } } - - // DEBUG: Print all transactions - for t in &self.transactions { - println!("Transaction {}: {} on {}", t.description, t.amount, t.date); - } } }