From 78744a104f7497a0e1bba59e83e2de4cf588e713 Mon Sep 17 00:00:00 2001 From: OBJNULL Date: Fri, 18 Apr 2025 16:18:25 -0400 Subject: [PATCH] Removed debug from Parser --- project/src/parser.rs | 5 ----- 1 file changed, 5 deletions(-) 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); - } } }